]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/4xm.c
prores: initialise encoder and decoder parts only when needed
[ffmpeg] / libavcodec / 4xm.c
index 8d7db98653ab8f336d145b8a70c6783458727202..139a642a47faa9b24420a363a103b261002c5b34 100644 (file)
@@ -880,7 +880,7 @@ static av_cold void common_init(AVCodecContext *avctx)
 {
     FourXContext * const f = avctx->priv_data;
 
-    dsputil_init(&f->dsp, avctx);
+    ff_dsputil_init(&f->dsp, avctx);
 
     f->avctx = avctx;
 }
@@ -918,7 +918,7 @@ static av_cold int decode_end(AVCodecContext *avctx)
         av_freep(&f->cfrm[i].data);
         f->cfrm[i].allocated_size = 0;
     }
-    free_vlc(&f->pre_vlc);
+    ff_free_vlc(&f->pre_vlc);
     if (f->current_picture.data[0])
         avctx->release_buffer(avctx, &f->current_picture);
     if (f->last_picture.data[0])