Mercurial > libavcodec.hg
annotate fft.c @ 3475:4e06affe9974 libavcodec
Correct inverse quantization for P-frames
| author | kostya |
|---|---|
| date | Sun, 16 Jul 2006 03:47:34 +0000 |
| parents | 769d68b12d26 |
| children | 5ea82888103e |
| rev | line source |
|---|---|
| 781 | 1 /* |
| 2 * FFT/IFFT transforms | |
| 3 * Copyright (c) 2002 Fabrice Bellard. | |
| 4 * | |
| 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. | |
| 9 * | |
| 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. | |
| 14 * | |
| 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 | |
|
3036
0b546eab515d
Update licensing information: The FSF changed postal address.
diego
parents:
2979
diff
changeset
|
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
| 781 | 18 */ |
| 1106 | 19 |
| 20 /** | |
| 21 * @file fft.c | |
| 22 * FFT/IFFT transforms. | |
| 23 */ | |
| 24 | |
| 781 | 25 #include "dsputil.h" |
| 26 | |
| 27 /** | |
| 28 * The size of the FFT is 2^nbits. If inverse is TRUE, inverse FFT is | |
| 2967 | 29 * done |
| 781 | 30 */ |
|
1879
dd63cb7e5080
fft_*() renamed into ff_fft_*() patch by (Gildas Bazin <gbazin at altern dot org>)
michael
parents:
1106
diff
changeset
|
31 int ff_fft_init(FFTContext *s, int nbits, int inverse) |
| 781 | 32 { |
| 33 int i, j, m, n; | |
| 34 float alpha, c1, s1, s2; | |
| 2967 | 35 |
| 781 | 36 s->nbits = nbits; |
| 37 n = 1 << nbits; | |
| 38 | |
| 39 s->exptab = av_malloc((n / 2) * sizeof(FFTComplex)); | |
| 40 if (!s->exptab) | |
| 41 goto fail; | |
| 42 s->revtab = av_malloc(n * sizeof(uint16_t)); | |
| 43 if (!s->revtab) | |
| 44 goto fail; | |
| 45 s->inverse = inverse; | |
| 46 | |
| 47 s2 = inverse ? 1.0 : -1.0; | |
| 2967 | 48 |
| 781 | 49 for(i=0;i<(n/2);i++) { |
| 50 alpha = 2 * M_PI * (float)i / (float)n; | |
| 51 c1 = cos(alpha); | |
| 52 s1 = sin(alpha) * s2; | |
| 53 s->exptab[i].re = c1; | |
| 54 s->exptab[i].im = s1; | |
| 55 } | |
|
1879
dd63cb7e5080
fft_*() renamed into ff_fft_*() patch by (Gildas Bazin <gbazin at altern dot org>)
michael
parents:
1106
diff
changeset
|
56 s->fft_calc = ff_fft_calc_c; |
| 781 | 57 s->exptab1 = NULL; |
| 58 | |
| 59 /* compute constant table for HAVE_SSE version */ | |
| 3175 | 60 #if (defined(HAVE_MMX) && (defined(HAVE_BUILTIN_VECTOR) || defined(HAVE_MM3DNOW))) || defined(HAVE_ALTIVEC) |
|
975
e05d525505c5
fft altivec by Romain Dolbeau - simplified patch, test it on PPC with fft-test and wma decoding
bellard
parents:
971
diff
changeset
|
61 { |
|
1009
3b7cc8e4b83f
AltiVec perf (take 2), plus a couple AltiVec functions by (Romain Dolbeau <dolbeau at irisa dot fr>)
michaelni
parents:
995
diff
changeset
|
62 int has_vectors = 0; |
| 781 | 63 |
|
975
e05d525505c5
fft altivec by Romain Dolbeau - simplified patch, test it on PPC with fft-test and wma decoding
bellard
parents:
971
diff
changeset
|
64 #if defined(HAVE_MMX) |
|
3383
769d68b12d26
ff_fft_init now double checks that the system has mm3dnow.h before
banan
parents:
3175
diff
changeset
|
65 #ifdef HAVE_MM3DNOW |
| 3175 | 66 has_vectors = mm_support() & (MM_3DNOW | MM_3DNOWEXT | MM_SSE | MM_SSE2); |
|
3383
769d68b12d26
ff_fft_init now double checks that the system has mm3dnow.h before
banan
parents:
3175
diff
changeset
|
67 #else |
|
769d68b12d26
ff_fft_init now double checks that the system has mm3dnow.h before
banan
parents:
3175
diff
changeset
|
68 has_vectors = mm_support() & (MM_SSE | MM_SSE2); |
|
769d68b12d26
ff_fft_init now double checks that the system has mm3dnow.h before
banan
parents:
3175
diff
changeset
|
69 #endif |
|
995
edc10966b081
altivec jumbo patch by (Romain Dolbeau <dolbeaur at club-internet dot fr>)
michaelni
parents:
975
diff
changeset
|
70 #endif |
|
1009
3b7cc8e4b83f
AltiVec perf (take 2), plus a couple AltiVec functions by (Romain Dolbeau <dolbeau at irisa dot fr>)
michaelni
parents:
995
diff
changeset
|
71 #if defined(HAVE_ALTIVEC) && !defined(ALTIVEC_USE_REFERENCE_C_CODE) |
|
995
edc10966b081
altivec jumbo patch by (Romain Dolbeau <dolbeaur at club-internet dot fr>)
michaelni
parents:
975
diff
changeset
|
72 has_vectors = mm_support() & MM_ALTIVEC; |
|
975
e05d525505c5
fft altivec by Romain Dolbeau - simplified patch, test it on PPC with fft-test and wma decoding
bellard
parents:
971
diff
changeset
|
73 #endif |
|
e05d525505c5
fft altivec by Romain Dolbeau - simplified patch, test it on PPC with fft-test and wma decoding
bellard
parents:
971
diff
changeset
|
74 if (has_vectors) { |
|
e05d525505c5
fft altivec by Romain Dolbeau - simplified patch, test it on PPC with fft-test and wma decoding
bellard
parents:
971
diff
changeset
|
75 int np, nblocks, np2, l; |
|
e05d525505c5
fft altivec by Romain Dolbeau - simplified patch, test it on PPC with fft-test and wma decoding
bellard
parents:
971
diff
changeset
|
76 FFTComplex *q; |
| 2967 | 77 |
|
975
e05d525505c5
fft altivec by Romain Dolbeau - simplified patch, test it on PPC with fft-test and wma decoding
bellard
parents:
971
diff
changeset
|
78 np = 1 << nbits; |
|
e05d525505c5
fft altivec by Romain Dolbeau - simplified patch, test it on PPC with fft-test and wma decoding
bellard
parents:
971
diff
changeset
|
79 nblocks = np >> 3; |
|
e05d525505c5
fft altivec by Romain Dolbeau - simplified patch, test it on PPC with fft-test and wma decoding
bellard
parents:
971
diff
changeset
|
80 np2 = np >> 1; |
|
e05d525505c5
fft altivec by Romain Dolbeau - simplified patch, test it on PPC with fft-test and wma decoding
bellard
parents:
971
diff
changeset
|
81 s->exptab1 = av_malloc(np * 2 * sizeof(FFTComplex)); |
|
e05d525505c5
fft altivec by Romain Dolbeau - simplified patch, test it on PPC with fft-test and wma decoding
bellard
parents:
971
diff
changeset
|
82 if (!s->exptab1) |
|
e05d525505c5
fft altivec by Romain Dolbeau - simplified patch, test it on PPC with fft-test and wma decoding
bellard
parents:
971
diff
changeset
|
83 goto fail; |
|
e05d525505c5
fft altivec by Romain Dolbeau - simplified patch, test it on PPC with fft-test and wma decoding
bellard
parents:
971
diff
changeset
|
84 q = s->exptab1; |
|
e05d525505c5
fft altivec by Romain Dolbeau - simplified patch, test it on PPC with fft-test and wma decoding
bellard
parents:
971
diff
changeset
|
85 do { |
|
e05d525505c5
fft altivec by Romain Dolbeau - simplified patch, test it on PPC with fft-test and wma decoding
bellard
parents:
971
diff
changeset
|
86 for(l = 0; l < np2; l += 2 * nblocks) { |
|
e05d525505c5
fft altivec by Romain Dolbeau - simplified patch, test it on PPC with fft-test and wma decoding
bellard
parents:
971
diff
changeset
|
87 *q++ = s->exptab[l]; |
|
e05d525505c5
fft altivec by Romain Dolbeau - simplified patch, test it on PPC with fft-test and wma decoding
bellard
parents:
971
diff
changeset
|
88 *q++ = s->exptab[l + nblocks]; |
|
e05d525505c5
fft altivec by Romain Dolbeau - simplified patch, test it on PPC with fft-test and wma decoding
bellard
parents:
971
diff
changeset
|
89 |
|
e05d525505c5
fft altivec by Romain Dolbeau - simplified patch, test it on PPC with fft-test and wma decoding
bellard
parents:
971
diff
changeset
|
90 q->re = -s->exptab[l].im; |
|
e05d525505c5
fft altivec by Romain Dolbeau - simplified patch, test it on PPC with fft-test and wma decoding
bellard
parents:
971
diff
changeset
|
91 q->im = s->exptab[l].re; |
|
e05d525505c5
fft altivec by Romain Dolbeau - simplified patch, test it on PPC with fft-test and wma decoding
bellard
parents:
971
diff
changeset
|
92 q++; |
|
e05d525505c5
fft altivec by Romain Dolbeau - simplified patch, test it on PPC with fft-test and wma decoding
bellard
parents:
971
diff
changeset
|
93 q->re = -s->exptab[l + nblocks].im; |
|
e05d525505c5
fft altivec by Romain Dolbeau - simplified patch, test it on PPC with fft-test and wma decoding
bellard
parents:
971
diff
changeset
|
94 q->im = s->exptab[l + nblocks].re; |
|
e05d525505c5
fft altivec by Romain Dolbeau - simplified patch, test it on PPC with fft-test and wma decoding
bellard
parents:
971
diff
changeset
|
95 q++; |
|
e05d525505c5
fft altivec by Romain Dolbeau - simplified patch, test it on PPC with fft-test and wma decoding
bellard
parents:
971
diff
changeset
|
96 } |
|
e05d525505c5
fft altivec by Romain Dolbeau - simplified patch, test it on PPC with fft-test and wma decoding
bellard
parents:
971
diff
changeset
|
97 nblocks = nblocks >> 1; |
|
e05d525505c5
fft altivec by Romain Dolbeau - simplified patch, test it on PPC with fft-test and wma decoding
bellard
parents:
971
diff
changeset
|
98 } while (nblocks != 0); |
|
e05d525505c5
fft altivec by Romain Dolbeau - simplified patch, test it on PPC with fft-test and wma decoding
bellard
parents:
971
diff
changeset
|
99 av_freep(&s->exptab); |
|
e05d525505c5
fft altivec by Romain Dolbeau - simplified patch, test it on PPC with fft-test and wma decoding
bellard
parents:
971
diff
changeset
|
100 #if defined(HAVE_MMX) |
| 3175 | 101 #ifdef HAVE_MM3DNOW |
| 102 if (has_vectors & MM_3DNOWEXT) | |
| 103 /* 3DNowEx for Athlon(XP) */ | |
| 104 s->fft_calc = ff_fft_calc_3dn2; | |
| 105 else if (has_vectors & MM_3DNOW) | |
| 106 /* 3DNow! for K6-2/3 */ | |
| 107 s->fft_calc = ff_fft_calc_3dn; | |
| 108 #endif | |
| 109 #ifdef HAVE_BUILTIN_VECTOR | |
| 110 if (has_vectors & MM_SSE2) | |
| 111 /* SSE for P4/K8 */ | |
| 112 s->fft_calc = ff_fft_calc_sse; | |
| 113 else if ((has_vectors & MM_SSE) && | |
| 114 s->fft_calc == ff_fft_calc_c) | |
| 115 /* SSE for P3 */ | |
| 116 s->fft_calc = ff_fft_calc_sse; | |
| 117 #endif | |
| 118 #else /* HAVE_MMX */ | |
|
1879
dd63cb7e5080
fft_*() renamed into ff_fft_*() patch by (Gildas Bazin <gbazin at altern dot org>)
michael
parents:
1106
diff
changeset
|
119 s->fft_calc = ff_fft_calc_altivec; |
|
975
e05d525505c5
fft altivec by Romain Dolbeau - simplified patch, test it on PPC with fft-test and wma decoding
bellard
parents:
971
diff
changeset
|
120 #endif |
|
e05d525505c5
fft altivec by Romain Dolbeau - simplified patch, test it on PPC with fft-test and wma decoding
bellard
parents:
971
diff
changeset
|
121 } |
| 781 | 122 } |
| 123 #endif | |
| 124 | |
| 125 /* compute bit reverse table */ | |
| 126 | |
| 127 for(i=0;i<n;i++) { | |
| 128 m=0; | |
| 129 for(j=0;j<nbits;j++) { | |
| 130 m |= ((i >> j) & 1) << (nbits-j-1); | |
| 131 } | |
| 132 s->revtab[i]=m; | |
| 133 } | |
| 134 return 0; | |
| 135 fail: | |
| 136 av_freep(&s->revtab); | |
| 137 av_freep(&s->exptab); | |
| 138 av_freep(&s->exptab1); | |
| 139 return -1; | |
| 140 } | |
| 141 | |
| 142 /* butter fly op */ | |
| 143 #define BF(pre, pim, qre, qim, pre1, pim1, qre1, qim1) \ | |
| 144 {\ | |
| 145 FFTSample ax, ay, bx, by;\ | |
| 146 bx=pre1;\ | |
| 147 by=pim1;\ | |
| 148 ax=qre1;\ | |
| 149 ay=qim1;\ | |
| 150 pre = (bx + ax);\ | |
| 151 pim = (by + ay);\ | |
| 152 qre = (bx - ax);\ | |
| 153 qim = (by - ay);\ | |
| 154 } | |
| 155 | |
| 156 #define MUL16(a,b) ((a) * (b)) | |
| 157 | |
| 158 #define CMUL(pre, pim, are, aim, bre, bim) \ | |
| 159 {\ | |
| 160 pre = (MUL16(are, bre) - MUL16(aim, bim));\ | |
| 161 pim = (MUL16(are, bim) + MUL16(bre, aim));\ | |
| 162 } | |
| 163 | |
| 164 /** | |
|
1879
dd63cb7e5080
fft_*() renamed into ff_fft_*() patch by (Gildas Bazin <gbazin at altern dot org>)
michael
parents:
1106
diff
changeset
|
165 * Do a complex FFT with the parameters defined in ff_fft_init(). The |
| 781 | 166 * input data must be permuted before with s->revtab table. No |
| 2967 | 167 * 1.0/sqrt(n) normalization is done. |
| 781 | 168 */ |
|
1879
dd63cb7e5080
fft_*() renamed into ff_fft_*() patch by (Gildas Bazin <gbazin at altern dot org>)
michael
parents:
1106
diff
changeset
|
169 void ff_fft_calc_c(FFTContext *s, FFTComplex *z) |
| 781 | 170 { |
| 171 int ln = s->nbits; | |
| 2979 | 172 int j, np, np2; |
| 173 int nblocks, nloops; | |
| 781 | 174 register FFTComplex *p, *q; |
| 175 FFTComplex *exptab = s->exptab; | |
| 176 int l; | |
| 177 FFTSample tmp_re, tmp_im; | |
| 178 | |
| 179 np = 1 << ln; | |
| 180 | |
| 181 /* pass 0 */ | |
| 182 | |
| 183 p=&z[0]; | |
| 184 j=(np >> 1); | |
| 185 do { | |
| 2967 | 186 BF(p[0].re, p[0].im, p[1].re, p[1].im, |
| 781 | 187 p[0].re, p[0].im, p[1].re, p[1].im); |
| 188 p+=2; | |
| 189 } while (--j != 0); | |
| 190 | |
| 191 /* pass 1 */ | |
| 192 | |
| 2967 | 193 |
| 781 | 194 p=&z[0]; |
| 195 j=np >> 2; | |
| 196 if (s->inverse) { | |
| 197 do { | |
| 2967 | 198 BF(p[0].re, p[0].im, p[2].re, p[2].im, |
| 781 | 199 p[0].re, p[0].im, p[2].re, p[2].im); |
| 2967 | 200 BF(p[1].re, p[1].im, p[3].re, p[3].im, |
| 781 | 201 p[1].re, p[1].im, -p[3].im, p[3].re); |
| 202 p+=4; | |
| 203 } while (--j != 0); | |
| 204 } else { | |
| 205 do { | |
| 2967 | 206 BF(p[0].re, p[0].im, p[2].re, p[2].im, |
| 781 | 207 p[0].re, p[0].im, p[2].re, p[2].im); |
| 2967 | 208 BF(p[1].re, p[1].im, p[3].re, p[3].im, |
| 781 | 209 p[1].re, p[1].im, p[3].im, -p[3].re); |
| 210 p+=4; | |
| 211 } while (--j != 0); | |
| 212 } | |
| 213 /* pass 2 .. ln-1 */ | |
| 214 | |
| 215 nblocks = np >> 3; | |
| 216 nloops = 1 << 2; | |
| 217 np2 = np >> 1; | |
| 218 do { | |
| 219 p = z; | |
| 220 q = z + nloops; | |
| 221 for (j = 0; j < nblocks; ++j) { | |
| 222 BF(p->re, p->im, q->re, q->im, | |
| 223 p->re, p->im, q->re, q->im); | |
| 2967 | 224 |
| 781 | 225 p++; |
| 226 q++; | |
| 227 for(l = nblocks; l < np2; l += nblocks) { | |
| 228 CMUL(tmp_re, tmp_im, exptab[l].re, exptab[l].im, q->re, q->im); | |
| 229 BF(p->re, p->im, q->re, q->im, | |
| 230 p->re, p->im, tmp_re, tmp_im); | |
| 231 p++; | |
| 232 q++; | |
| 233 } | |
| 234 | |
| 235 p += nloops; | |
| 236 q += nloops; | |
| 237 } | |
| 238 nblocks = nblocks >> 1; | |
| 239 nloops = nloops << 1; | |
| 240 } while (nblocks != 0); | |
| 241 } | |
| 242 | |
| 243 /** | |
|
1879
dd63cb7e5080
fft_*() renamed into ff_fft_*() patch by (Gildas Bazin <gbazin at altern dot org>)
michael
parents:
1106
diff
changeset
|
244 * Do the permutation needed BEFORE calling ff_fft_calc() |
| 781 | 245 */ |
|
1879
dd63cb7e5080
fft_*() renamed into ff_fft_*() patch by (Gildas Bazin <gbazin at altern dot org>)
michael
parents:
1106
diff
changeset
|
246 void ff_fft_permute(FFTContext *s, FFTComplex *z) |
| 781 | 247 { |
| 248 int j, k, np; | |
| 249 FFTComplex tmp; | |
| 250 const uint16_t *revtab = s->revtab; | |
| 2967 | 251 |
| 781 | 252 /* reverse */ |
| 253 np = 1 << s->nbits; | |
| 254 for(j=0;j<np;j++) { | |
| 255 k = revtab[j]; | |
| 256 if (k < j) { | |
| 257 tmp = z[k]; | |
| 258 z[k] = z[j]; | |
| 259 z[j] = tmp; | |
| 260 } | |
| 261 } | |
| 262 } | |
| 263 | |
|
1879
dd63cb7e5080
fft_*() renamed into ff_fft_*() patch by (Gildas Bazin <gbazin at altern dot org>)
michael
parents:
1106
diff
changeset
|
264 void ff_fft_end(FFTContext *s) |
| 781 | 265 { |
| 266 av_freep(&s->revtab); | |
| 267 av_freep(&s->exptab); | |
| 268 av_freep(&s->exptab1); | |
| 269 } | |
| 270 |
