mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-05-31 08:57:49 +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
|
@ -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
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue