]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/h263_parser.c
build: Fix Ogg demuxer dependencies
[ffmpeg] / libavcodec / h263_parser.c
index 4b9fc110f21f4e53b118b182baaaf8da965a3b2c..98a72d92a97321201abb0f7daedfad0650ffe4c2 100644 (file)
@@ -84,9 +84,8 @@ static int h263_parse(AVCodecParserContext *s,
 }
 
 AVCodecParser ff_h263_parser = {
-    { CODEC_ID_H263 },
-    sizeof(ParseContext),
-    NULL,
-    h263_parse,
-    ff_parse_close,
+    .codec_ids      = { CODEC_ID_H263 },
+    .priv_data_size = sizeof(ParseContext),
+    .parser_parse   = h263_parse,
+    .parser_close   = ff_parse_close,
 };