From c3135e11f47e193870ea2a1b15ca90eb2743e148 Mon Sep 17 00:00:00 2001 From: Baptiste Coudurier Date: Wed, 10 Jan 2007 10:30:03 +0000 Subject: [PATCH] add official VC1 fourcc Originally committed as revision 7434 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/mov.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavformat/mov.c b/libavformat/mov.c index bcaff2a..3d1ef2d 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -120,6 +120,8 @@ static const CodecTag mov_video_tags[] = { { CODEC_ID_TARGA, MKTAG('t', 'g', 'a', ' ') }, /* Truevision Targa */ { CODEC_ID_TIFF, MKTAG('t', 'i', 'f', 'f') }, /* TIFF embedded in MOV */ { CODEC_ID_RAWVIDEO, MKTAG('2', 'v', 'u', 'y') }, /* UNCOMPRESSED 8BIT 4:2:2 */ + { CODEC_ID_VC1, MKTAG('v', 'c', '-', '1') }, /* SMPTE RP 2025 */ + { CODEC_ID_WMV3, MKTAG('v', 'c', '-', '1') }, /* SMPTE RP 2025 */ { CODEC_ID_NONE, 0 }, }; -- 2.7.4