]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/cavs_parser.c
Merge remote-tracking branch 'qatar/master'
[ffmpeg] / libavcodec / cavs_parser.c
index be32345af81f43bc331b5a2b1d648d0dc8d811db..0f4c1b274d20f1561604466079632aa34d2431b4 100644 (file)
@@ -98,10 +98,9 @@ static int cavsvideo_parse(AVCodecParserContext *s,
 }
 
 AVCodecParser ff_cavsvideo_parser = {
-    { CODEC_ID_CAVS },
-    sizeof(ParseContext1),
-    NULL,
-    cavsvideo_parse,
-    ff_parse1_close,
-    ff_mpeg4video_split,
+    .codec_ids      = { CODEC_ID_CAVS },
+    .priv_data_size = sizeof(ParseContext1),
+    .parser_parse   = cavsvideo_parse,
+    .parser_close   = ff_parse1_close,
+    .split          = ff_mpeg4video_split,
 };