diff options
author | Ben Littler <tempn@twmi.rr.com> | 2009-11-02 00:10:10 +0000 |
---|---|---|
committer | Ben Littler <tempn@twmi.rr.com> | 2009-11-02 00:10:10 +0000 |
commit | e47ca4f798b753a1abdb8a41edf74a7c99dfa703 (patch) | |
tree | ca44809e5dc5146fed2236c63ce3f1ae98fb158b /libavformat | |
parent | 58b3536dd540bbf6003716df649f4226ca51f553 (diff) | |
download | ffmpeg-e47ca4f798b753a1abdb8a41edf74a7c99dfa703.tar.gz |
map VYUY fourcc to rawcodec
fixes http://samples.mplayerhq.hu/V-codecs/ATI-VCR12/ATI/y422test.avi
Originally committed as revision 20432 to svn://svn.ffmpeg.org/ffmpeg/trunk
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 3c92a0c5ba..faaa194260 100644 --- a/libavformat/riff.c +++ b/libavformat/riff.c @@ -151,6 +151,7 @@ const AVCodecTag ff_codec_bmp_tags[] = { { CODEC_ID_RAWVIDEO, MKTAG('P', '4', '2', '2') }, { CODEC_ID_RAWVIDEO, MKTAG('Y', 'V', '1', '2') }, { CODEC_ID_RAWVIDEO, MKTAG('U', 'Y', 'V', 'Y') }, + { CODEC_ID_RAWVIDEO, MKTAG('V', 'Y', 'U', 'Y') }, { CODEC_ID_RAWVIDEO, MKTAG('I', 'Y', 'U', 'V') }, { CODEC_ID_RAWVIDEO, MKTAG('Y', '8', '0', '0') }, { CODEC_ID_RAWVIDEO, MKTAG('H', 'D', 'Y', 'C') }, |