ffmpeg | branch: master | Andreas Rheinhardt <[email protected]> | Sat May 4 15:34:54 2024 +0200| [adb1521385e6dbd583e64c25648fe6f5dd84d0d4] | committer: Andreas Rheinhardt
avcodec/mpegvideo_enc: Move initializing H263DSP to ituh263enc.c Signed-off-by: Andreas Rheinhardt <[email protected]> > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=adb1521385e6dbd583e64c25648fe6f5dd84d0d4 --- libavcodec/ituh263enc.c | 5 +++++ 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) _______________________________________________ ffmpeg-cvslog mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog To unsubscribe, visit link above, or email [email protected] with subject "unsubscribe".
