mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
avcodec/mpegvideo_enc: Move initializing H263DSP to ituh263enc.c
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
parent
bf8208d0cd
commit
adb1521385
@ -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);
|
||||
}
|
||||
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user