summaryrefslogtreecommitdiff
path: root/libavcodec/fft.h
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2010-07-01 23:21:42 +0000
committerMåns Rullgård <mans@mansr.com>2010-07-01 23:21:42 +0000
commit588d28ac0866c8e9acb436c1c752de4c6de0d21e (patch)
tree2a8e9098ec7f4ea499d9498c6bcc24004aea92ac /libavcodec/fft.h
parentbf7ba153729e2ea645cd6cc1150514137037923c (diff)
Remove vestiges of radix-2 FFT
Patch (mostly) by Loren Merritt Originally committed as revision 23957 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/fft.h')
-rw-r--r--libavcodec/fft.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/libavcodec/fft.h b/libavcodec/fft.h
index 227f07c7b1..8930c93ec7 100644
--- a/libavcodec/fft.h
+++ b/libavcodec/fft.h
@@ -33,8 +33,6 @@ struct FFTContext {
int nbits;
int inverse;
uint16_t *revtab;
- FFTComplex *exptab;
- FFTComplex *exptab1; /* only used by SSE code */
FFTComplex *tmp_buf;
int mdct_size; /* size of MDCT (i.e. number of input data * 2) */
int mdct_bits; /* n = 2^nbits */
@@ -46,7 +44,6 @@ struct FFTContext {
void (*imdct_calc)(struct FFTContext *s, FFTSample *output, const FFTSample *input);
void (*imdct_half)(struct FFTContext *s, FFTSample *output, const FFTSample *input);
void (*mdct_calc)(struct FFTContext *s, FFTSample *output, const FFTSample *input);
- int split_radix;
int permutation;
#define FF_MDCT_PERM_NONE 0
#define FF_MDCT_PERM_INTERLEAVE 1