summaryrefslogtreecommitdiff
path: root/libavformat/riff.c
diff options
context:
space:
mode:
authorAurelien Jacobs <aurel@gnuage.org>2006-12-17 22:00:12 +0000
committerAurelien Jacobs <aurel@gnuage.org>2006-12-17 22:00:12 +0000
commit9110a0e32d5eb421558145459e2a1fcc9720c170 (patch)
tree7dbd7d7b28ecd7de0e6e981b84afc82dba377930 /libavformat/riff.c
parent95cefcb4ed4c0af96dea5fb993ee8349d1391021 (diff)
Add support for VP60 and VP61.
Originally committed as revision 7329 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/riff.c')
-rw-r--r--libavformat/riff.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/riff.c b/libavformat/riff.c
index d315c66afb..81605cceb3 100644
--- a/libavformat/riff.c
+++ b/libavformat/riff.c
@@ -118,6 +118,8 @@ const CodecTag codec_bmp_tags[] = {
{ CODEC_ID_VP3, MKTAG('V', 'P', '3', '1') },
{ CODEC_ID_VP3, MKTAG('V', 'P', '3', '0') },
{ CODEC_ID_VP5, MKTAG('V', 'P', '5', '0') },
+ { CODEC_ID_VP6, MKTAG('V', 'P', '6', '0') },
+ { CODEC_ID_VP6, MKTAG('V', 'P', '6', '1') },
{ CODEC_ID_VP6, MKTAG('V', 'P', '6', '2') },
{ CODEC_ID_ASV1, MKTAG('A', 'S', 'V', '1') },
{ CODEC_ID_ASV2, MKTAG('A', 'S', 'V', '2') },