mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-18 21:10:10 +01:00
avcodec: Extend fft to size 2^17
Asked-for-by: durandal_1707 Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
@@ -500,7 +500,10 @@ av_cold void ff_fft_init_mips(FFTContext *s)
|
||||
{
|
||||
int n=0;
|
||||
|
||||
ff_fft_lut_init(ff_fft_offsets_lut, 0, 1 << 16, &n);
|
||||
if (s->nbits > 16)
|
||||
return;
|
||||
|
||||
ff_fft_lut_init(ff_fft_offsets_lut, 0, 1 << 17, &n);
|
||||
ff_init_ff_cos_tabs(16);
|
||||
|
||||
#if HAVE_INLINE_ASM
|
||||
|
||||
Reference in New Issue
Block a user