From 5511ad14fe1cc871a5a256bf801db09cf1cc35f5 Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Wed, 2 Nov 2011 09:34:41 +0100 Subject: lavc: use designated initialisers for parsers. --- libavcodec/rv34_parser.c | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) (limited to 'libavcodec/rv34_parser.c') diff --git a/libavcodec/rv34_parser.c b/libavcodec/rv34_parser.c index ce8604345e..4c1d2e396e 100644 --- a/libavcodec/rv34_parser.c +++ b/libavcodec/rv34_parser.c @@ -78,18 +78,16 @@ static int rv34_parse(AVCodecParserContext *s, #ifdef CONFIG_RV30_PARSER AVCodecParser ff_rv30_parser = { - { CODEC_ID_RV30 }, - sizeof(RV34ParseContext), - NULL, - rv34_parse, + .codec_ids = { CODEC_ID_RV30 }, + .priv_data_size = sizeof(RV34ParseContext), + .parser_parse = rv34_parse, }; #endif #ifdef CONFIG_RV40_PARSER AVCodecParser ff_rv40_parser = { - { CODEC_ID_RV40 }, - sizeof(RV34ParseContext), - NULL, - rv34_parse, + .codec_ids = { CODEC_ID_RV40 }, + .priv_data_size = sizeof(RV34ParseContext), + .parser_parse = rv34_parse, }; #endif -- cgit v1.2.3