[FFmpeg-devel] [PATCH 3/7] avcodec/mpegvideo_enc: Move initializing H263DSP to ituh263enc.c

Andreas Rheinhardt andreas.rheinhardt at outlook.com
Sun Jun 9 12:54:34 EEST 2024


Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt at outlook.com>
---
 libavcodec/ituh263enc.c    | 4 ++++
 libavcodec/mpegvideo_enc.c | 2 --
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/libavcodec/ituh263enc.c b/libavcodec/ituh263enc.c
index 97abfb3f45..72c2288ebe 100644
--- a/libavcodec/ituh263enc.c
+++ b/libavcodec/ituh263enc.c
@@ -42,6 +42,7 @@
 #include "h263.h"
 #include "h263enc.h"
 #include "h263data.h"
+#include "h263dsp.h"
 #include "mathops.h"
 #include "mpegutils.h"
 #include "internal.h"
@@ -869,6 +870,9 @@ av_cold void ff_h263_encode_init(MpegEncContext *s)
         av_log(s->avctx, AV_LOG_WARNING, "Clipping lmin value to %d\n", s->lmax);
         s->lmin = s->lmax;
     }
+#if CONFIG_H263_ENCODER // Snow and SVQ1 call this
+    ff_h263dsp_init(&s->h263dsp);
+#endif
 
     ff_thread_once(&init_static_once, h263_encode_init_static);
 }
diff --git a/libavcodec/mpegvideo_enc.c b/libavcodec/mpegvideo_enc.c
index 45b6fdd3f0..c9cb4c2e64 100644
--- a/libavcodec/mpegvideo_enc.c
+++ b/libavcodec/mpegvideo_enc.c
@@ -296,8 +296,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)
-- 
2.40.1



More information about the ffmpeg-devel mailing list