aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/mpegvideo_enc.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2024-05-04 15:34:54 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2024-06-12 13:23:29 +0200
commitadb1521385e6dbd583e64c25648fe6f5dd84d0d4 (patch)
tree9a20d20caccd3dc613a7eaa7819b4197448e2cc5 /libavcodec/mpegvideo_enc.c
parentbf8208d0cd7c429e227c7e7f644076e272f51d55 (diff)
downloadffmpeg-adb1521385e6dbd583e64c25648fe6f5dd84d0d4.tar.gz
avcodec/mpegvideo_enc: Move initializing H263DSP to ituh263enc.c
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/mpegvideo_enc.c')
-rw-r--r--libavcodec/mpegvideo_enc.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/libavcodec/mpegvideo_enc.c b/libavcodec/mpegvideo_enc.c
index 4d467178bb..dae9fa97f4 100644
--- a/libavcodec/mpegvideo_enc.c
+++ b/libavcodec/mpegvideo_enc.c
@@ -297,8 +297,6 @@ av_cold int ff_dct_encode_init(MpegEncContext *s)
ff_dct_encode_init_x86(s);
#endif
- if (CONFIG_H263_ENCODER)
- ff_h263dsp_init(&s->h263dsp);
if (!s->dct_quantize)
s->dct_quantize = dct_quantize_c;
if (!s->denoise_dct)