Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'libavcodec/rv34_parser.c')
-rw-r--r--libavcodec/rv34_parser.c14
1 files changed, 6 insertions, 8 deletions
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