]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/latm_parser.c
x86: cabac: replace explicit memory references with "m" operands
[ffmpeg] / libavcodec / latm_parser.c
index fe39de8e092649ba32104307a41b7194751148cd..d2c0244c02641c0bb66302fdb69b221cea9628fd 100644 (file)
@@ -106,9 +106,8 @@ static int latm_parse(AVCodecParserContext *s1, AVCodecContext *avctx,
 }
 
 AVCodecParser ff_aac_latm_parser = {
-    { CODEC_ID_AAC_LATM },
-    sizeof(LATMParseContext),
-    NULL,
-    latm_parse,
-    ff_parse_close
+    .codec_ids      = { CODEC_ID_AAC_LATM },
+    .priv_data_size = sizeof(LATMParseContext),
+    .parser_parse   = latm_parse,
+    .parser_close   = ff_parse_close
 };