diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2011-12-14 15:08:59 +0100 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2011-12-14 15:08:59 +0100 |
commit | 9c18a056b125d18fa676c3fe932fe0d0f396e5a1 (patch) | |
tree | b89d0132918443650a8d5745026fec6e52326fcc /libavformat/riff.c | |
parent | c608776ce982a89e11325403cb1209dfe1b7bcd1 (diff) | |
download | ffmpeg-9c18a056b125d18fa676c3fe932fe0d0f396e5a1.tar.gz |
Detect 'yuv2' as rawvideo also in avi.
Diffstat (limited to 'libavformat/riff.c')
-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 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') }, |