comparison fft.h @ 12407:00676ed9b822 libavcodec

Revert unintended changes to fft.h from r24890.
author alexc
date Mon, 23 Aug 2010 19:35:58 +0000
parents b25537518e40
children
comparison
equal deleted inserted replaced
12406:b25537518e40 12407:00676ed9b822
33 int nbits; 33 int nbits;
34 int inverse; 34 int inverse;
35 uint16_t *revtab; 35 uint16_t *revtab;
36 FFTComplex *tmp_buf; 36 FFTComplex *tmp_buf;
37 int mdct_size; /* size of MDCT (i.e. number of input data * 2) */ 37 int mdct_size; /* size of MDCT (i.e. number of input data * 2) */
38 int mdct_bits; /* n = 2^mdct_bits */ 38 int mdct_bits; /* n = 2^nbits */
39 /* pre/post rotation tables */ 39 /* pre/post rotation tables */
40 FFTSample *tcos; 40 FFTSample *tcos;
41 FFTSample *tsin; 41 FFTSample *tsin;
42 void (*fft_permute)(struct FFTContext *s, FFTComplex *z); 42 void (*fft_permute)(struct FFTContext *s, FFTComplex *z);
43 void (*fft_calc)(struct FFTContext *s, FFTComplex *z); 43 void (*fft_calc)(struct FFTContext *s, FFTComplex *z);