diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2011-10-03 21:30:58 +0200 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2011-10-03 21:31:46 +0200 |
commit | ae23b26995252da4524acc4fe15c8f580cfa7b8c (patch) | |
tree | 1190c36328ee5195d2c3317a4fe0d56e49bc5b6d | |
parent | 85ea5c6e73587b6a7e37ec2e086dab4f7c408b80 (diff) | |
download | ffmpeg-ae23b26995252da4524acc4fe15c8f580cfa7b8c.tar.gz |
Enable conversions to YUV444P9/YUV444P10, they seem to work fine.
Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
-rw-r--r-- | libswscale/utils.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libswscale/utils.c b/libswscale/utils.c index a851d99a7d..6fec4b787e 100644 --- a/libswscale/utils.c +++ b/libswscale/utils.c @@ -138,10 +138,10 @@ const static FormatEntry format_entries[PIX_FMT_NB] = { [PIX_FMT_YUV420P10LE] = { 1 , 1 }, [PIX_FMT_YUV422P10BE] = { 1 , 1 }, [PIX_FMT_YUV422P10LE] = { 1 , 1 }, - [PIX_FMT_YUV444P9BE] = { 1 , 0 }, - [PIX_FMT_YUV444P9LE] = { 1 , 0 }, - [PIX_FMT_YUV444P10BE] = { 1 , 0 }, - [PIX_FMT_YUV444P10LE] = { 1 , 0 }, + [PIX_FMT_YUV444P9BE] = { 1 , 1 }, + [PIX_FMT_YUV444P9LE] = { 1 , 1 }, + [PIX_FMT_YUV444P10BE] = { 1 , 1 }, + [PIX_FMT_YUV444P10LE] = { 1 , 1 }, }; int sws_isSupportedInput(enum PixelFormat pix_fmt) |