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 /libavformat | |
parent | 92b099daf4b8ef93513e38b43899cb8458a2fde3 (diff) | |
download | ffmpeg-b6a09ef700786b4e1e871dfa0f5c386ea43bbd0a.tar.gz |
rawvideo: Support decoding YVYU422 FourCC
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/riff.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/riff.c b/libavformat/riff.c index f023bb505b..67300df12a 100644 --- a/libavformat/riff.c +++ b/libavformat/riff.c @@ -233,6 +233,7 @@ const AVCodecTag ff_codec_bmp_tags[] = { { AV_CODEC_ID_RAWVIDEO, MKTAG('Y', 'U', 'V', '9') }, { AV_CODEC_ID_RAWVIDEO, MKTAG('Y', 'V', 'U', '9') }, { AV_CODEC_ID_RAWVIDEO, MKTAG('a', 'u', 'v', '2') }, + { AV_CODEC_ID_RAWVIDEO, MKTAG('Y', 'V', 'Y', 'U') }, { AV_CODEC_ID_FRWU, MKTAG('F', 'R', 'W', 'U') }, { AV_CODEC_ID_R10K, MKTAG('R', '1', '0', 'k') }, { AV_CODEC_ID_R210, MKTAG('r', '2', '1', '0') }, |