get rid of warnings
[Rockbox.git] / apps / codecs / libwma / fft.c
blobe934e3c1ce33c94386033b79de6236dd459e2ee3
1 /*
2 * WMA compatible decoder
3 * Copyright (c) 2002 The FFmpeg Project.
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 #include "wmadec.h"
21 #include "wmafixed.h"
23 FFTComplex exptab0[512] IBSS_ATTR;
25 /* butter fly op */
26 #define BF(pre, pim, qre, qim, pre1, pim1, qre1, qim1) \
28 fixed32 ax, ay, bx, by;\
29 bx=pre1;\
30 by=pim1;\
31 ax=qre1;\
32 ay=qim1;\
33 pre = (bx + ax);\
34 pim = (by + ay);\
35 qre = (bx - ax);\
36 qim = (by - ay);\
40 int fft_calc_unscaled(FFTContext *s, FFTComplex *z)
42 int ln = s->nbits;
43 int j, np, np2;
44 int nblocks, nloops;
45 register FFTComplex *p, *q;
46 // FFTComplex *exptab = s->exptab;
47 int l;
48 fixed32 tmp_re, tmp_im;
49 int tabshift = 10-ln;
51 np = 1 << ln;
54 /* pass 0 */
56 p=&z[0];
57 j=(np >> 1);
60 BF(p[0].re, p[0].im, p[1].re, p[1].im,
61 p[0].re, p[0].im, p[1].re, p[1].im);
62 p+=2;
64 while (--j != 0);
66 /* pass 1 */
69 p=&z[0];
70 j=np >> 2;
71 if (s->inverse)
75 BF(p[0].re, p[0].im, p[2].re, p[2].im,
76 p[0].re, p[0].im, p[2].re, p[2].im);
77 BF(p[1].re, p[1].im, p[3].re, p[3].im,
78 p[1].re, p[1].im, -p[3].im, p[3].re);
79 p+=4;
81 while (--j != 0);
83 else
87 BF(p[0].re, p[0].im, p[2].re, p[2].im,
88 p[0].re, p[0].im, p[2].re, p[2].im);
89 BF(p[1].re, p[1].im, p[3].re, p[3].im,
90 p[1].re, p[1].im, p[3].im, -p[3].re);
91 p+=4;
93 while (--j != 0);
95 /* pass 2 .. ln-1 */
97 nblocks = np >> 3;
98 nloops = 1 << 2;
99 np2 = np >> 1;
102 p = z;
103 q = z + nloops;
104 for (j = 0; j < nblocks; ++j)
106 BF(p->re, p->im, q->re, q->im,
107 p->re, p->im, q->re, q->im);
109 p++;
110 q++;
111 for(l = nblocks; l < np2; l += nblocks)
113 CMUL(&tmp_re, &tmp_im, exptab0[(l<<tabshift)].re, exptab0[(l<<tabshift)].im, q->re, q->im);
114 //CMUL(&tmp_re, &tmp_im, exptab[l].re, exptab[l].im, q->re, q->im);
115 BF(p->re, p->im, q->re, q->im,
116 p->re, p->im, tmp_re, tmp_im);
117 p++;
118 q++;
121 p += nloops;
122 q += nloops;
124 nblocks = nblocks >> 1;
125 nloops = nloops << 1;
127 while (nblocks != 0);
128 return 0;
131 int fft_init_global(void)
133 int i, n;
134 fixed32 c1, s1, s2;
136 n=1<<10;
137 s2 = 1 ? 1 : -1;
138 for(i=0;i<(n/2);++i)
140 fixed32 ifix = itofix32(i);
141 fixed32 nfix = itofix32(n);
142 fixed32 res = fixdiv32(ifix,nfix);
144 s1 = fsincos(res<<16, &c1);
146 exptab0[i].re = c1;
147 exptab0[i].im = s1*s2;
150 return 0;