mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-05-25 14:09:14 +00:00
lavc: use designated initialisers for parsers.
This commit is contained in:
parent
da24963725
commit
5511ad14fe
23 changed files with 106 additions and 122 deletions
|
@ -87,9 +87,8 @@ static int dnxhd_parse(AVCodecParserContext *s,
|
|||
}
|
||||
|
||||
AVCodecParser ff_dnxhd_parser = {
|
||||
{ CODEC_ID_DNXHD },
|
||||
sizeof(ParseContext),
|
||||
NULL,
|
||||
dnxhd_parse,
|
||||
ff_parse_close,
|
||||
.codec_ids = { CODEC_ID_DNXHD },
|
||||
.priv_data_size = sizeof(ParseContext),
|
||||
.parser_parse = dnxhd_parse,
|
||||
.parser_close = ff_parse_close,
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue