summaryrefslogtreecommitdiff
path: root/libavcodec/vp3_parser.c
diff options
context:
space:
mode:
authorAurelien Jacobs <aurel@gnuage.org>2008-06-26 17:14:20 +0000
committerAurelien Jacobs <aurel@gnuage.org>2008-06-26 17:14:20 +0000
commit4231f05b2893b117a4ea86c098612805ed51d295 (patch)
tree3033477b38d870b4c001bc2d61244d8cf838212f /libavcodec/vp3_parser.c
parentb3bf98aa56f6985e86d97a975c954370c47ca8d6 (diff)
VP3 parser can also handle VP6 without any changes.
Originally committed as revision 13990 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/vp3_parser.c')
-rw-r--r--libavcodec/vp3_parser.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/vp3_parser.c b/libavcodec/vp3_parser.c
index 818b460ffc..c22e6dd277 100644
--- a/libavcodec/vp3_parser.c
+++ b/libavcodec/vp3_parser.c
@@ -36,7 +36,8 @@ static int parse(AVCodecParserContext *s,
}
AVCodecParser vp3_parser = {
- { CODEC_ID_THEORA, CODEC_ID_VP3 },
+ { CODEC_ID_THEORA, CODEC_ID_VP3,
+ CODEC_ID_VP6, CODEC_ID_VP6F, CODEC_ID_VP6A },
0,
NULL,
parse,