diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2016-03-04 15:39:55 +0100 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2016-03-04 16:05:47 +0100 |
commit | 305344d89e21ed11c74274167cf597f151778c42 (patch) | |
tree | 56d6dd9315aa040e71a8b229f3215b5d9821acf1 /libavcodec/fft.h | |
parent | ae76b842213380758adf4828b8602ac57a7492e4 (diff) | |
download | ffmpeg-305344d89e21ed11c74274167cf597f151778c42.tar.gz |
avcodec/fft: Add revtab32 for FFTs with more than 65536 samples
x86 optimizations are used only for the cases they support (<=65536 samples)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec/fft.h')
-rw-r--r-- | libavcodec/fft.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/fft.h b/libavcodec/fft.h index 60df239416..c858570a21 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 |