diff options
author | Vittorio Giovara <vittorio.giovara@gmail.com> | 2014-04-07 17:19:53 +0200 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2014-04-07 23:50:34 +0200 |
commit | 92b099daf4b8ef93513e38b43899cb8458a2fde3 (patch) | |
tree | c710f34a51faafc685be8cfd123540defd913d47 /libswscale/utils.c | |
parent | 8b17243d1742279bcb2368f8d325ea71e66736c8 (diff) | |
download | ffmpeg-92b099daf4b8ef93513e38b43899cb8458a2fde3.tar.gz |
swscale: support converting YVYU422 pixel format
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 e438c88d0d..6af41f8b30 100644 --- a/libswscale/utils.c +++ b/libswscale/utils.c @@ -92,6 +92,7 @@ static const FormatEntry format_entries[AV_PIX_FMT_NB] = { [AV_PIX_FMT_YUVJ420P] = { 1, 1 }, [AV_PIX_FMT_YUVJ422P] = { 1, 1 }, [AV_PIX_FMT_YUVJ444P] = { 1, 1 }, + [AV_PIX_FMT_YVYU422] = { 1, 1 }, [AV_PIX_FMT_UYVY422] = { 1, 1 }, [AV_PIX_FMT_UYYVYY411] = { 0, 0 }, [AV_PIX_FMT_BGR8] = { 1, 1 }, |