diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-10-08 23:07:05 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-10-09 02:04:54 +0200 |
commit | cca81e7eb0e9e88fe652334038cc17a4cb92f78b (patch) | |
tree | 61f50d3d915e66d06598090ec22f57c161ac192b /libswscale/utils.c | |
parent | 085ea85c2ebdc293c54158d26f0ecb86ceefbcc9 (diff) | |
download | ffmpeg-cca81e7eb0e9e88fe652334038cc17a4cb92f78b.tar.gz |
sws: gbr24p input support
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libswscale/utils.c')
-rw-r--r-- | libswscale/utils.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libswscale/utils.c b/libswscale/utils.c index 6fec4b787e..6c2a8de120 100644 --- a/libswscale/utils.c +++ b/libswscale/utils.c @@ -142,6 +142,7 @@ 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_GBR24P] = { 1 , 0 }, }; int sws_isSupportedInput(enum PixelFormat pix_fmt) |