X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=libavcodec%2Fvp8_parser.c;h=6e154ded25c930c93159cc9c837beeab202ddea5;hb=186980bf0f5e890295b6dc6b939084e3ebcf0dde;hp=aebf667e73aa30a9109ebe8be900aff89840f956;hpb=51bfaa21c85201ab31776a447599349a1ed6e96b;p=ffmpeg diff --git a/libavcodec/vp8_parser.c b/libavcodec/vp8_parser.c index aebf667e73a..6e154ded25c 100644 --- a/libavcodec/vp8_parser.c +++ b/libavcodec/vp8_parser.c @@ -33,8 +33,6 @@ static int parse(AVCodecParserContext *s, } AVCodecParser ff_vp8_parser = { - { CODEC_ID_VP8 }, - 0, - NULL, - parse, + .codec_ids = { CODEC_ID_VP8 }, + .parser_parse = parse, };