X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=libavcodec%2Ffft.h;h=c858570a21c0f2dff581385ec563b7fae29a7676;hb=c78a7267175a3d1e07b88be42f949f95124925e3;hp=64f0f6331e822c0c9bc2c502b1ec985a1f96bd0e;hpb=2ec66ff83d00c3dbef06616e86994bb33d319202;p=ffmpeg diff --git a/libavcodec/fft.h b/libavcodec/fft.h index 64f0f6331e8..c858570a21c 100644 --- a/libavcodec/fft.h +++ b/libavcodec/fft.h @@ -110,6 +110,7 @@ struct FFTContext { void (*mdct_calcw)(struct FFTContext *s, FFTDouble *output, const FFTSample *input); enum fft_permutation_type fft_permutation; enum mdct_permutation_type mdct_permutation; + uint32_t *revtab32; }; #if CONFIG_HARDCODED_TABLES @@ -134,7 +135,8 @@ extern COSTABLE(8192); extern COSTABLE(16384); extern COSTABLE(32768); extern COSTABLE(65536); -extern COSTABLE_CONST FFTSample* const FFT_NAME(ff_cos_tabs)[17]; +extern COSTABLE(131072); +extern COSTABLE_CONST FFTSample* const FFT_NAME(ff_cos_tabs)[18]; #define ff_init_ff_cos_tabs FFT_NAME(ff_init_ff_cos_tabs)