diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-11-29 22:27:28 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-11-29 22:27:28 +0100 |
commit | be0b869b04c049ea00fd178bb4c4fe4b767ed31d (patch) | |
tree | 2f0ae8973b9cc3a5a1fbec3a47828570e83b7d67 /libavcodec/mpeg4video_parser.c | |
parent | f924d6e40b269158ff54f5b5a6f08ae3fdefbd5c (diff) | |
parent | 35e0833d410e31d9fd35695ad798c5d13de2af58 (diff) | |
download | ffmpeg-be0b869b04c049ea00fd178bb4c4fe4b767ed31d.tar.gz |
Merge commit '35e0833d410e31d9fd35695ad798c5d13de2af58'
* commit '35e0833d410e31d9fd35695ad798c5d13de2af58':
mpeg4videodec: add a mpeg4-specific private context.
Conflicts:
libavcodec/mpeg4video_parser.c
libavcodec/mpeg4videodec.c
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/mpeg4video_parser.c')
-rw-r--r-- | libavcodec/mpeg4video_parser.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/libavcodec/mpeg4video_parser.c b/libavcodec/mpeg4video_parser.c index 6a8cb6f7cc..26a4dd3789 100644 --- a/libavcodec/mpeg4video_parser.c +++ b/libavcodec/mpeg4video_parser.c @@ -30,7 +30,7 @@ struct Mp4vParseContext { ParseContext pc; - struct MpegEncContext enc; + Mpeg4DecContext dec_ctx; int first_picture; }; @@ -78,7 +78,8 @@ static int av_mpeg4_decode_header(AVCodecParserContext *s1, const uint8_t *buf, int buf_size) { struct Mp4vParseContext *pc = s1->priv_data; - MpegEncContext *s = &pc->enc; + Mpeg4DecContext *dec_ctx = &pc->dec_ctx; + MpegEncContext *s = &dec_ctx->m; GetBitContext gb1, *gb = &gb1; int ret; @@ -117,9 +118,9 @@ static av_cold int mpeg4video_parse_init(AVCodecParserContext *s) ff_mpeg4videodec_static_init(); pc->first_picture = 1; - pc->enc.quant_precision = 5; - pc->enc.slice_context_count = 1; - pc->enc.showed_packed_warning = 1; + pc->dec_ctx.m.quant_precision = 5; + pc->dec_ctx.m.slice_context_count = 1; + pc->dec_ctx.m.showed_packed_warning = 1; return 0; } |