]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/h261_parser.c
doc: fix dependencies in pod generation
[ffmpeg] / libavcodec / h261_parser.c
index 20c2862549afbe7c9e61ec5f95f70c15fbaa667b..8a507ee8f27ef93105b7b08107e4ba67c395b5f1 100644 (file)
@@ -82,9 +82,8 @@ static int h261_parse(AVCodecParserContext *s,
 }
 
 AVCodecParser ff_h261_parser = {
-    { CODEC_ID_H261 },
-    sizeof(ParseContext),
-    NULL,
-    h261_parse,
-    ff_parse_close,
+    .codec_ids      = { AV_CODEC_ID_H261 },
+    .priv_data_size = sizeof(ParseContext),
+    .parser_parse   = h261_parse,
+    .parser_close   = ff_parse_close,
 };