mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-06 15:49:50 +08:00
swscale: RGB4444 and BGR444 input
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
This commit is contained in:

committed by
Ronald S. Bultje

parent
d41d7773bc
commit
5cad970971
@ -120,10 +120,10 @@ const static FormatEntry format_entries[PIX_FMT_NB] = {
|
||||
[PIX_FMT_YUV422P16BE] = { 1 , 1 },
|
||||
[PIX_FMT_YUV444P16LE] = { 1 , 1 },
|
||||
[PIX_FMT_YUV444P16BE] = { 1 , 1 },
|
||||
[PIX_FMT_RGB444LE] = { 0 , 1 },
|
||||
[PIX_FMT_RGB444BE] = { 0 , 1 },
|
||||
[PIX_FMT_BGR444LE] = { 0 , 1 },
|
||||
[PIX_FMT_BGR444BE] = { 0 , 1 },
|
||||
[PIX_FMT_RGB444LE] = { 1 , 1 },
|
||||
[PIX_FMT_RGB444BE] = { 1 , 1 },
|
||||
[PIX_FMT_BGR444LE] = { 1 , 1 },
|
||||
[PIX_FMT_BGR444BE] = { 1 , 1 },
|
||||
[PIX_FMT_Y400A] = { 1 , 0 },
|
||||
[PIX_FMT_BGR48BE] = { 1 , 1 },
|
||||
[PIX_FMT_BGR48LE] = { 1 , 1 },
|
||||
|
Reference in New Issue
Block a user