]> git.sesse.net Git - ffmpeg/commitdiff
mdec: merge mdec_common_init() into decode_init().
authorAnton Khirnov <anton@khirnov.net>
Sun, 9 Dec 2012 17:44:44 +0000 (18:44 +0100)
committerAnton Khirnov <anton@khirnov.net>
Tue, 29 Jan 2013 06:27:23 +0000 (07:27 +0100)
There is no point in keeping those two functions separate.

libavcodec/mdec.c

index 2f74cdcd011e1db9177e59fc5103015a16ade8e4..ec09124ffc5d6ccce2a47558e3454944f11f9f11 100644 (file)
@@ -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);