diff options
author | Lynne <dev@lynne.ee> | 2021-01-09 16:23:20 +0100 |
---|---|---|
committer | Lynne <dev@lynne.ee> | 2021-01-14 01:44:21 +0100 |
commit | 151b41c8cc55eec5e7bf8896c21cdc0c1f99b3cf (patch) | |
tree | 3fd413a3066da49312f979cd3a93d760d13980de /libavcodec/fft_template.c | |
parent | 9e05421dbe0c733dca2a39f8399db86acc7e82bc (diff) | |
download | ffmpeg-151b41c8cc55eec5e7bf8896c21cdc0c1f99b3cf.tar.gz |
fft: remove 16-bit FFT and MDCT code
No longer used by anything.
Unfortunately the old FFT_FLOAT/FFT_FIXED_32 is left as-is. It's
simply too much work for code meant to be all removed anyway.
Diffstat (limited to 'libavcodec/fft_template.c')
-rw-r--r-- | libavcodec/fft_template.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libavcodec/fft_template.c b/libavcodec/fft_template.c index e807f4b255..2d05990ca9 100644 --- a/libavcodec/fft_template.c +++ b/libavcodec/fft_template.c @@ -236,11 +236,7 @@ av_cold int ff_fft_init(FFTContext *s, int nbits, int inverse) if (ARCH_ARM) ff_fft_init_arm(s); if (ARCH_PPC) ff_fft_init_ppc(s); if (ARCH_X86) ff_fft_init_x86(s); - if (CONFIG_MDCT) s->mdct_calcw = s->mdct_calc; if (HAVE_MIPSFPU) ff_fft_init_mips(s); -#else - if (CONFIG_MDCT) s->mdct_calcw = ff_mdct_calcw_c; - if (ARCH_ARM) ff_fft_fixed_init_arm(s); #endif for(j=4; j<=nbits; j++) { ff_init_ff_cos_tabs(j); |