]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/vp8_parser.c
libvpx: support vp9
[ffmpeg] / libavcodec / vp8_parser.c
index fbdd0ee5ac72c49fffa84703d57ec96b56add379..196de83935aac48644cecf7381b721fa7c80fe24 100644 (file)
@@ -33,8 +33,6 @@ static int parse(AVCodecParserContext *s,
 }
 
 AVCodecParser ff_vp8_parser = {
-    { CODEC_ID_VP8 },
-    0,
-    NULL,
-    parse,
+    .codec_ids      = { AV_CODEC_ID_VP8 },
+    .parser_parse   = parse,
 };