Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Littler <tempn@twmi.rr.com>2009-10-27 20:37:41 +0300
committerBen Littler <tempn@twmi.rr.com>2009-10-27 20:37:41 +0300
commit13547dd11fb16f1278857a2d7b2cbc9a9f3e6ecb (patch)
treefe7825d36c4d30d915fbace7b8a84e158be4d9c4 /libavformat
parent8767a009a1dc27b07a2d3dca8679748e06fcc7e1 (diff)
add 2vuy fourcc to riff.c , fixes samples/V-codecs/2vuy.avi
Originally committed as revision 20383 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/riff.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/riff.c b/libavformat/riff.c
index ffc15ded5f..3c92a0c5ba 100644
--- a/libavformat/riff.c
+++ b/libavformat/riff.c
@@ -147,6 +147,7 @@ const AVCodecTag ff_codec_bmp_tags[] = {
{ CODEC_ID_RAWVIDEO, MKTAG('U', 'Y', 'N', 'Y') },
{ CODEC_ID_RAWVIDEO, MKTAG('u', 'y', 'v', '1') },
{ CODEC_ID_RAWVIDEO, MKTAG('2', 'V', 'u', '1') },
+ { CODEC_ID_RAWVIDEO, MKTAG('2', 'v', 'u', 'y') },
{ CODEC_ID_RAWVIDEO, MKTAG('P', '4', '2', '2') },
{ CODEC_ID_RAWVIDEO, MKTAG('Y', 'V', '1', '2') },
{ CODEC_ID_RAWVIDEO, MKTAG('U', 'Y', 'V', 'Y') },