Re: [FFmpeg-devel] [PATCH v3 1/3] swscale: make yuv2interleavedX more asm-friendly

2020-06-03 Thread Michael Niedermayer
On Sat, Apr 25, 2020 at 07:37:01PM -0700, Nelson Gomez wrote: > From: Nelson Gomez > > Extracting information from SwsContext in assembly is difficult, and > rearranging SwsContext just for asm access didn't look good. These > functions only need a couple of fields from it anyway, so just make >

[FFmpeg-devel] [PATCH v3 1/3] swscale: make yuv2interleavedX more asm-friendly

2020-04-25 Thread Nelson Gomez
From: Nelson Gomez Extracting information from SwsContext in assembly is difficult, and rearranging SwsContext just for asm access didn't look good. These functions only need a couple of fields from it anyway, so just make them parameters in their own right. Signed-off-by: Nelson Gomez --- lib