diff options
author | Anton Khirnov <anton@khirnov.net> | 2012-12-09 18:44:44 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2013-01-29 07:27:23 +0100 |
commit | 098eed95bc1a6b2c8ac97f126f62bb74699670cf (patch) | |
tree | ff70b509a127c7cc98f5d105f60ce339e9b937d4 /libavcodec | |
parent | f1c395944ce9c80ab0104570691462589c078eb2 (diff) | |
download | ffmpeg-098eed95bc1a6b2c8ac97f126f62bb74699670cf.tar.gz |
mdec: merge mdec_common_init() into decode_init().
There is no point in keeping those two functions separate.
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/mdec.c | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/libavcodec/mdec.c b/libavcodec/mdec.c index 2f74cdcd01..ec09124ffc 100644 --- a/libavcodec/mdec.c +++ b/libavcodec/mdec.c @@ -211,23 +211,17 @@ static int decode_frame(AVCodecContext *avctx, return (get_bits_count(&a->gb)+31)/32*4; } -static av_cold void mdec_common_init(AVCodecContext *avctx){ +static av_cold int decode_init(AVCodecContext *avctx){ MDECContext * const a = avctx->priv_data; - - ff_dsputil_init(&a->dsp, avctx); + AVFrame *p= &a->picture; a->mb_width = (avctx->coded_width + 15) / 16; a->mb_height = (avctx->coded_height + 15) / 16; avctx->coded_frame= &a->picture; a->avctx= avctx; -} -static av_cold int decode_init(AVCodecContext *avctx){ - MDECContext * const a = avctx->priv_data; - AVFrame *p= &a->picture; - - mdec_common_init(avctx); + ff_dsputil_init(&a->dsp, avctx); ff_mpeg12_init_vlcs(); ff_init_scantable(a->dsp.idct_permutation, &a->scantable, ff_zigzag_direct); |