swscale: add support for planar RGB input.
This commit is contained in:
@ -137,6 +137,13 @@ const static FormatEntry format_entries[PIX_FMT_NB] = {
|
||||
[PIX_FMT_YUV444P9LE] = { 1 , 1 },
|
||||
[PIX_FMT_YUV444P10BE] = { 1 , 1 },
|
||||
[PIX_FMT_YUV444P10LE] = { 1 , 1 },
|
||||
[PIX_FMT_GBRP] = { 1 , 0 },
|
||||
[PIX_FMT_GBRP9LE] = { 1 , 0 },
|
||||
[PIX_FMT_GBRP9BE] = { 1 , 0 },
|
||||
[PIX_FMT_GBRP10LE] = { 1 , 0 },
|
||||
[PIX_FMT_GBRP10BE] = { 1 , 0 },
|
||||
[PIX_FMT_GBRP16LE] = { 1 , 0 },
|
||||
[PIX_FMT_GBRP16BE] = { 1 , 0 },
|
||||
};
|
||||
|
||||
int sws_isSupportedInput(enum PixelFormat pix_fmt)
|
||||
|
Reference in New Issue
Block a user