diff options
author | Vittorio Giovara <vittorio.giovara@gmail.com> | 2014-03-09 12:26:19 +0000 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2014-04-08 23:24:36 +0200 |
commit | b6a09ef700786b4e1e871dfa0f5c386ea43bbd0a (patch) | |
tree | a541cef9ac3378d6d746a9427058ee2c168d1b68 /libavcodec | |
parent | 92b099daf4b8ef93513e38b43899cb8458a2fde3 (diff) | |
download | ffmpeg-b6a09ef700786b4e1e871dfa0f5c386ea43bbd0a.tar.gz |
rawvideo: Support decoding YVYU422 FourCC
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/raw.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/raw.c b/libavcodec/raw.c index 69999b30c7..547ac442f1 100644 --- a/libavcodec/raw.c +++ b/libavcodec/raw.c @@ -53,6 +53,7 @@ const PixelFormatTag ff_raw_pix_fmt_tags[] = { { AV_PIX_FMT_YUYV422, MKTAG('V', '4', '2', '2') }, { AV_PIX_FMT_YUYV422, MKTAG('V', 'Y', 'U', 'Y') }, { AV_PIX_FMT_YUYV422, MKTAG('Y', 'U', 'N', 'V') }, + { AV_PIX_FMT_YVYU422, MKTAG('Y', 'V', 'Y', 'U') }, /* Philips */ { AV_PIX_FMT_UYVY422, MKTAG('U', 'Y', 'V', 'Y') }, { AV_PIX_FMT_UYVY422, MKTAG('H', 'D', 'Y', 'C') }, { AV_PIX_FMT_UYVY422, MKTAG('U', 'Y', 'N', 'V') }, |