diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2024-05-04 15:34:54 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2024-06-12 13:23:29 +0200 |
commit | adb1521385e6dbd583e64c25648fe6f5dd84d0d4 (patch) | |
tree | 9a20d20caccd3dc613a7eaa7819b4197448e2cc5 | |
parent | bf8208d0cd7c429e227c7e7f644076e272f51d55 (diff) | |
download | ffmpeg-adb1521385e6dbd583e64c25648fe6f5dd84d0d4.tar.gz |
avcodec/mpegvideo_enc: Move initializing H263DSP to ituh263enc.c
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-rw-r--r-- | libavcodec/ituh263enc.c | 5 | ||||
-rw-r--r-- | libavcodec/mpegvideo_enc.c | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/libavcodec/ituh263enc.c b/libavcodec/ituh263enc.c index 4b3c55896f..db8003c242 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" @@ -881,6 +882,10 @@ av_cold void ff_h263_encode_init(MpegEncContext *s) s->c_dc_scale_table= ff_mpeg1_dc_scale_table; } +#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 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) |