]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/flac_parser.c
rgb2rgb: allow conversion for <15 bpp
[ffmpeg] / libavcodec / flac_parser.c
index 947a5b6e15fa60e6fed4d75bbb174b3bd36acdc6..87f3f9504208cb24767e3a4e4b6cbb5ab4f46068 100644 (file)
@@ -674,9 +674,9 @@ static void flac_parse_close(AVCodecParserContext *c)
 }
 
 AVCodecParser ff_flac_parser = {
-    { CODEC_ID_FLAC },
-    sizeof(FLACParseContext),
-    flac_parse_init,
-    flac_parse,
-    flac_parse_close,
+    .codec_ids      = { CODEC_ID_FLAC },
+    .priv_data_size = sizeof(FLACParseContext),
+    .parser_init    = flac_parse_init,
+    .parser_parse   = flac_parse,
+    .parser_close   = flac_parse_close,
 };