aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@ag.or.at>2011-12-14 15:08:59 +0100
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2011-12-14 15:08:59 +0100
commit9c18a056b125d18fa676c3fe932fe0d0f396e5a1 (patch)
treeb89d0132918443650a8d5745026fec6e52326fcc
parentc608776ce982a89e11325403cb1209dfe1b7bcd1 (diff)
downloadffmpeg-9c18a056b125d18fa676c3fe932fe0d0f396e5a1.tar.gz
Detect 'yuv2' as rawvideo also in avi.
-rw-r--r--libavformat/riff.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/riff.c b/libavformat/riff.c
index 27c9ae8364..8c4d797e93 100644
--- a/libavformat/riff.c
+++ b/libavformat/riff.c
@@ -174,6 +174,7 @@ const AVCodecTag ff_codec_bmp_tags[] = {
{ CODEC_ID_RAWVIDEO, MKTAG('2', 'V', 'u', '1') },
{ CODEC_ID_RAWVIDEO, MKTAG('2', 'v', 'u', 'y') },
{ CODEC_ID_RAWVIDEO, MKTAG('y', 'u', 'v', 's') },
+ { CODEC_ID_RAWVIDEO, MKTAG('y', 'u', 'v', '2') },
{ CODEC_ID_RAWVIDEO, MKTAG('P', '4', '2', '2') },
{ CODEC_ID_RAWVIDEO, MKTAG('Y', 'V', '1', '2') },
{ CODEC_ID_RAWVIDEO, MKTAG('Y', 'V', '1', '6') },