diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2007-01-10 10:30:03 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2007-01-10 10:30:03 +0000 |
commit | c3135e11f47e193870ea2a1b15ca90eb2743e148 (patch) | |
tree | dfe0a67d96922ff28d20f3c2d094d886b08a039d | |
parent | 3b72ec7536c8074b30a253f0378267225c37acda (diff) | |
download | ffmpeg-c3135e11f47e193870ea2a1b15ca90eb2743e148.tar.gz |
add official VC1 fourcc
Originally committed as revision 7434 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/mov.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c index bcaff2ae3f..3d1ef2d571 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 }, }; |