mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2025-10-22 00:20:07 +08:00
lavc: use designated initialisers for parsers.
This commit is contained in:
@@ -345,9 +345,9 @@ lost_sync:
|
||||
}
|
||||
|
||||
AVCodecParser ff_mlp_parser = {
|
||||
{ CODEC_ID_MLP, CODEC_ID_TRUEHD },
|
||||
sizeof(MLPParseContext),
|
||||
mlp_init,
|
||||
mlp_parse,
|
||||
ff_parse_close,
|
||||
.codec_ids = { CODEC_ID_MLP, CODEC_ID_TRUEHD },
|
||||
.priv_data_size = sizeof(MLPParseContext),
|
||||
.parser_init = mlp_init,
|
||||
.parser_parse = mlp_parse,
|
||||
.parser_close = ff_parse_close,
|
||||
};
|
||||
|
Reference in New Issue
Block a user