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:
authorDiego Biurrun <diego@biurrun.de>2013-11-05 11:11:47 +0400
committerDiego Biurrun <diego@biurrun.de>2013-11-08 15:40:47 +0400
commit0338c396987c82b41d322630ea9712fe5f9561d6 (patch)
tree62c5b48c7705ecfb62fb667683b72436c48490e9 /libavcodec/mpegvideo_enc.c
parent86f910806b2c303c43727d357a5b927e662bb3d1 (diff)
dsputil: Split off H.263 bits into their own H263DSPContext
Diffstat (limited to 'libavcodec/mpegvideo_enc.c')
-rw-r--r--libavcodec/mpegvideo_enc.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/mpegvideo_enc.c b/libavcodec/mpegvideo_enc.c
index c2459960af..76ddc5d491 100644
--- a/libavcodec/mpegvideo_enc.c
+++ b/libavcodec/mpegvideo_enc.c
@@ -707,6 +707,7 @@ av_cold int ff_MPV_encode_init(AVCodecContext *avctx)
if (ARCH_X86)
ff_MPV_encode_init_x86(s);
+ ff_h263dsp_init(&s->h263dsp);
if (!s->dct_quantize)
s->dct_quantize = ff_dct_quantize_c;
if (!s->denoise_dct)