X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=libavcodec%2Fh263_parser.c;h=9a1ba39d114a72e99618ec3c9505989436c1f6c8;hb=bd36ec55bef7c446079e192655d065fd86483876;hp=a3d24ea433a79be6d56c414fd2c9176dbeb2bb4d;hpb=3638f56dca167a408b6da7fb78cade08780f7d85;p=ffmpeg diff --git a/libavcodec/h263_parser.c b/libavcodec/h263_parser.c index a3d24ea433a..9a1ba39d114 100644 --- a/libavcodec/h263_parser.c +++ b/libavcodec/h263_parser.c @@ -88,9 +88,8 @@ static int h263_parse(AVCodecParserContext *s, } AVCodecParser ff_h263_parser = { - { CODEC_ID_H263 }, - sizeof(ParseContext), - NULL, - h263_parse, - ff_parse_close, + .codec_ids = { CODEC_ID_H263 }, + .priv_data_size = sizeof(ParseContext), + .parser_parse = h263_parse, + .parser_close = ff_parse_close, };