Re: [FFmpeg-devel] [PATCH] swscale/output: fix x2rbg10/x2bgr10 output

2024-11-01 Thread James Almer
On 11/1/2024 1:52 PM, Michael Niedermayer wrote: On Tue, Oct 29, 2024 at 07:19:13PM -0300, James Almer wrote: Checking for AV_PIX_FMT_X2RGB10 means the condition will succeed only for the version matching the host's endinaness, when only LE is supported, and thus the wrong path will be taken on

Re: [FFmpeg-devel] [PATCH] swscale/output: fix x2rbg10/x2bgr10 output

2024-11-01 Thread Michael Niedermayer
On Tue, Oct 29, 2024 at 07:19:13PM -0300, James Almer wrote: > Checking for AV_PIX_FMT_X2RGB10 means the condition will succeed only for the > version matching the host's endinaness, when only LE is supported, and thus > the wrong path will be taken on BE systems. > > Signed-off-by: James Almer >

[FFmpeg-devel] [PATCH] swscale/output: fix x2rbg10/x2bgr10 output

2024-10-29 Thread James Almer
Checking for AV_PIX_FMT_X2RGB10 means the condition will succeed only for the version matching the host's endinaness, when only LE is supported, and thus the wrong path will be taken on BE systems. Signed-off-by: James Almer --- libswscale/output.c | 12 +--- 1 file changed, 5 insertions