From 588d28ac0866c8e9acb436c1c752de4c6de0d21e Mon Sep 17 00:00:00 2001 From: Måns Rullgård Date: Thu, 1 Jul 2010 23:21:42 +0000 Subject: Remove vestiges of radix-2 FFT Patch (mostly) by Loren Merritt Originally committed as revision 23957 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/fft.h | 3 --- 1 file changed, 3 deletions(-) (limited to 'libavcodec/fft.h') 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 -- cgit v1.2.3