diff options
author | Joseph Artsimovich <joseph@mirriad.com> | 2011-07-18 11:22:15 +0100 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2011-07-21 02:10:31 +0100 |
commit | eedb1f2034e18d4a292167aef5efea6606874a7b (patch) | |
tree | a11d070d7acee60ec301b55c008341b784601b1f /libswscale | |
parent | 558c268318f968b77b1cd8bc55ad4429e4c39948 (diff) | |
download | ffmpeg-eedb1f2034e18d4a292167aef5efea6606874a7b.tar.gz |
swscale: mark YUV422P10(LE,BE) as supported for output
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libswscale')
-rw-r--r-- | libswscale/utils.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libswscale/utils.c b/libswscale/utils.c index 0bde82026d..c6abb6b446 100644 --- a/libswscale/utils.c +++ b/libswscale/utils.c @@ -176,10 +176,12 @@ int sws_isSupportedInput(enum PixelFormat pix_fmt) || (x)==PIX_FMT_YUV420P9LE \ || (x)==PIX_FMT_YUV420P10LE \ || (x)==PIX_FMT_YUV420P16LE \ + || (x)==PIX_FMT_YUV422P10LE \ || (x)==PIX_FMT_YUV422P16LE \ || (x)==PIX_FMT_YUV444P16LE \ || (x)==PIX_FMT_YUV420P9BE \ || (x)==PIX_FMT_YUV420P10BE \ + || (x)==PIX_FMT_YUV422P10BE \ || (x)==PIX_FMT_YUV420P16BE \ || (x)==PIX_FMT_YUV422P16BE \ || (x)==PIX_FMT_YUV444P16BE \ |