diff options
author | Mike Melanson <mike@multimedia.cx> | 2003-05-05 02:54:15 +0000 |
---|---|---|
committer | Mike Melanson <mike@multimedia.cx> | 2003-05-05 02:54:15 +0000 |
commit | d86053a41689e8a5ed897ef071c62ef3fcdc3655 (patch) | |
tree | a44463e163cc8fadc4fd39baa96e664dff4d3fb2 /libavformat | |
parent | 9616355144770cc9beb79a5d10503adbcc7c4a2e (diff) | |
download | ffmpeg-d86053a41689e8a5ed897ef071c62ef3fcdc3655.tar.gz |
first pass at a new VP3 video decoder
Originally committed as revision 1831 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/avienc.c | 1 | ||||
-rw-r--r-- | libavformat/mov.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/avienc.c b/libavformat/avienc.c index 04be25b917..72e9825234 100644 --- a/libavformat/avienc.c +++ b/libavformat/avienc.c @@ -162,6 +162,7 @@ const CodecTag codec_bmp_tags[] = { { CODEC_ID_INDEO3, MKTAG('i', 'v', '3', '2') }, { CODEC_ID_INDEO3, MKTAG('I', 'V', '3', '1') }, { CODEC_ID_INDEO3, MKTAG('I', 'V', '3', '2') }, + { CODEC_ID_VP3, MKTAG('V', 'P', '3', '1') }, { 0, 0 }, }; diff --git a/libavformat/mov.c b/libavformat/mov.c index f324df6165..6b1b8e6690 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -115,6 +115,7 @@ static const CodecTag mov_video_tags[] = { { CODEC_ID_DVVIDEO, MKTAG('d', 'v', 'c', ' ') }, /* DV NTSC */ { CODEC_ID_DVVIDEO, MKTAG('d', 'v', 'c', 'p') }, /* DV PAL */ /* { CODEC_ID_DVVIDEO, MKTAG('A', 'V', 'd', 'v') }, *//* AVID dv */ + { CODEC_ID_VP3, MKTAG('V', 'P', '3', '1') }, /* On2 VP3 */ { 0, 0 }, }; |