comparison fft.c @ 2979:bfabfdf9ce55 libavcodec

COSMETICS: tabs --> spaces, some prettyprinting
author diego
date Thu, 22 Dec 2005 01:10:11 +0000
parents ef2149182f1c
children 0b546eab515d
comparison
equal deleted inserted replaced
2978:403183bbb505 2979:bfabfdf9ce55
147 * 1.0/sqrt(n) normalization is done. 147 * 1.0/sqrt(n) normalization is done.
148 */ 148 */
149 void ff_fft_calc_c(FFTContext *s, FFTComplex *z) 149 void ff_fft_calc_c(FFTContext *s, FFTComplex *z)
150 { 150 {
151 int ln = s->nbits; 151 int ln = s->nbits;
152 int j, np, np2; 152 int j, np, np2;
153 int nblocks, nloops; 153 int nblocks, nloops;
154 register FFTComplex *p, *q; 154 register FFTComplex *p, *q;
155 FFTComplex *exptab = s->exptab; 155 FFTComplex *exptab = s->exptab;
156 int l; 156 int l;
157 FFTSample tmp_re, tmp_im; 157 FFTSample tmp_re, tmp_im;
158 158