Mercurial > libavcodec.hg
annotate fft-test.c @ 11573:a734f92c94b4 libavcodec
slice dice, inline and outline cmp()
motion_est.o is now less than half its previous size.
No speedchange meassureable.
author | michael |
---|---|
date | Fri, 02 Apr 2010 01:07:03 +0000 |
parents | 4c7afa50df6f |
children | 23cad4157bfb |
rev | line source |
---|---|
3699
c537a97eec66
Add official LGPL license headers to the files that were missing them.
diego
parents:
2967
diff
changeset
|
1 /* |
c537a97eec66
Add official LGPL license headers to the files that were missing them.
diego
parents:
2967
diff
changeset
|
2 * (c) 2002 Fabrice Bellard |
c537a97eec66
Add official LGPL license headers to the files that were missing them.
diego
parents:
2967
diff
changeset
|
3 * |
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3699
diff
changeset
|
4 * This file is part of FFmpeg. |
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3699
diff
changeset
|
5 * |
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3699
diff
changeset
|
6 * FFmpeg is free software; you can redistribute it and/or |
3699
c537a97eec66
Add official LGPL license headers to the files that were missing them.
diego
parents:
2967
diff
changeset
|
7 * modify it under the terms of the GNU Lesser General Public |
c537a97eec66
Add official LGPL license headers to the files that were missing them.
diego
parents:
2967
diff
changeset
|
8 * License as published by the Free Software Foundation; either |
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3699
diff
changeset
|
9 * version 2.1 of the License, or (at your option) any later version. |
3699
c537a97eec66
Add official LGPL license headers to the files that were missing them.
diego
parents:
2967
diff
changeset
|
10 * |
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3699
diff
changeset
|
11 * FFmpeg is distributed in the hope that it will be useful, |
3699
c537a97eec66
Add official LGPL license headers to the files that were missing them.
diego
parents:
2967
diff
changeset
|
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
c537a97eec66
Add official LGPL license headers to the files that were missing them.
diego
parents:
2967
diff
changeset
|
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
c537a97eec66
Add official LGPL license headers to the files that were missing them.
diego
parents:
2967
diff
changeset
|
14 * Lesser General Public License for more details. |
c537a97eec66
Add official LGPL license headers to the files that were missing them.
diego
parents:
2967
diff
changeset
|
15 * |
c537a97eec66
Add official LGPL license headers to the files that were missing them.
diego
parents:
2967
diff
changeset
|
16 * You should have received a copy of the GNU Lesser General Public |
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3699
diff
changeset
|
17 * License along with FFmpeg; if not, write to the Free Software |
3699
c537a97eec66
Add official LGPL license headers to the files that were missing them.
diego
parents:
2967
diff
changeset
|
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
c537a97eec66
Add official LGPL license headers to the files that were missing them.
diego
parents:
2967
diff
changeset
|
19 */ |
c537a97eec66
Add official LGPL license headers to the files that were missing them.
diego
parents:
2967
diff
changeset
|
20 |
1106 | 21 /** |
8718
e9d9d946f213
Use full internal pathname in doxygen @file directives.
diego
parents:
7546
diff
changeset
|
22 * @file libavcodec/fft-test.c |
1106 | 23 * FFT and MDCT tests. |
24 */ | |
25 | |
11390 | 26 #include "libavutil/mathematics.h" |
9199
ea0e5e9a520f
Replace random() usage in test programs by av_lfg_*().
diego
parents:
8718
diff
changeset
|
27 #include "libavutil/lfg.h" |
11390 | 28 #include "libavutil/log.h" |
29 #include "fft.h" | |
781 | 30 #include <math.h> |
980 | 31 #include <unistd.h> |
781 | 32 #include <sys/time.h> |
5118
3b190bc34546
Add some #includes to allow compilation without HAVE_AV_CONFIG_H.
diego
parents:
4760
diff
changeset
|
33 #include <stdlib.h> |
3b190bc34546
Add some #includes to allow compilation without HAVE_AV_CONFIG_H.
diego
parents:
4760
diff
changeset
|
34 #include <string.h> |
781 | 35 |
4760 | 36 #undef exit |
37 | |
781 | 38 /* reference fft */ |
39 | |
40 #define MUL16(a,b) ((a) * (b)) | |
41 | |
42 #define CMAC(pre, pim, are, aim, bre, bim) \ | |
43 {\ | |
44 pre += (MUL16(are, bre) - MUL16(aim, bim));\ | |
45 pim += (MUL16(are, bim) + MUL16(bre, aim));\ | |
46 } | |
47 | |
48 FFTComplex *exptab; | |
49 | |
9295
b225f51903af
Mark non-exported functions in test and example programs as static.
diego
parents:
9199
diff
changeset
|
50 static void fft_ref_init(int nbits, int inverse) |
781 | 51 { |
52 int n, i; | |
5418
95234f2e0bdd
make the reference code use double instead of float where it is easy
michael
parents:
5417
diff
changeset
|
53 double c1, s1, alpha; |
781 | 54 |
55 n = 1 << nbits; | |
56 exptab = av_malloc((n / 2) * sizeof(FFTComplex)); | |
57 | |
10807 | 58 for (i = 0; i < (n/2); i++) { |
781 | 59 alpha = 2 * M_PI * (float)i / (float)n; |
60 c1 = cos(alpha); | |
61 s1 = sin(alpha); | |
62 if (!inverse) | |
63 s1 = -s1; | |
64 exptab[i].re = c1; | |
65 exptab[i].im = s1; | |
66 } | |
67 } | |
68 | |
9295
b225f51903af
Mark non-exported functions in test and example programs as static.
diego
parents:
9199
diff
changeset
|
69 static void fft_ref(FFTComplex *tabr, FFTComplex *tab, int nbits) |
781 | 70 { |
71 int n, i, j, k, n2; | |
5418
95234f2e0bdd
make the reference code use double instead of float where it is easy
michael
parents:
5417
diff
changeset
|
72 double tmp_re, tmp_im, s, c; |
781 | 73 FFTComplex *q; |
74 | |
75 n = 1 << nbits; | |
76 n2 = n >> 1; | |
10807 | 77 for (i = 0; i < n; i++) { |
781 | 78 tmp_re = 0; |
79 tmp_im = 0; | |
80 q = tab; | |
10807 | 81 for (j = 0; j < n; j++) { |
781 | 82 k = (i * j) & (n - 1); |
83 if (k >= n2) { | |
84 c = -exptab[k - n2].re; | |
85 s = -exptab[k - n2].im; | |
86 } else { | |
87 c = exptab[k].re; | |
88 s = exptab[k].im; | |
89 } | |
90 CMAC(tmp_re, tmp_im, c, s, q->re, q->im); | |
91 q++; | |
92 } | |
93 tabr[i].re = tmp_re; | |
94 tabr[i].im = tmp_im; | |
95 } | |
96 } | |
97 | |
9295
b225f51903af
Mark non-exported functions in test and example programs as static.
diego
parents:
9199
diff
changeset
|
98 static void imdct_ref(float *out, float *in, int nbits) |
781 | 99 { |
5442 | 100 int n = 1<<nbits; |
781 | 101 int k, i, a; |
5418
95234f2e0bdd
make the reference code use double instead of float where it is easy
michael
parents:
5417
diff
changeset
|
102 double sum, f; |
781 | 103 |
10807 | 104 for (i = 0; i < n; i++) { |
781 | 105 sum = 0; |
10807 | 106 for (k = 0; k < n/2; k++) { |
781 | 107 a = (2 * i + 1 + (n / 2)) * (2 * k + 1); |
108 f = cos(M_PI * a / (double)(2 * n)); | |
109 sum += f * in[k]; | |
110 } | |
111 out[i] = -sum; | |
112 } | |
113 } | |
114 | |
115 /* NOTE: no normalisation by 1 / N is done */ | |
9295
b225f51903af
Mark non-exported functions in test and example programs as static.
diego
parents:
9199
diff
changeset
|
116 static void mdct_ref(float *output, float *input, int nbits) |
781 | 117 { |
5442 | 118 int n = 1<<nbits; |
781 | 119 int k, i; |
5418
95234f2e0bdd
make the reference code use double instead of float where it is easy
michael
parents:
5417
diff
changeset
|
120 double a, s; |
781 | 121 |
122 /* do it by hand */ | |
10807 | 123 for (k = 0; k < n/2; k++) { |
781 | 124 s = 0; |
10807 | 125 for (i = 0; i < n; i++) { |
781 | 126 a = (2*M_PI*(2*i+1+n/2)*(2*k+1) / (4 * n)); |
127 s += input[i] * cos(a); | |
128 } | |
129 output[k] = s; | |
130 } | |
131 } | |
132 | |
10944 | 133 static void idct_ref(float *output, float *input, int nbits) |
134 { | |
135 int n = 1<<nbits; | |
136 int k, i; | |
137 double a, s; | |
138 | |
139 /* do it by hand */ | |
140 for (i = 0; i < n; i++) { | |
141 s = 0.5 * input[0]; | |
142 for (k = 1; k < n; k++) { | |
143 a = M_PI*k*(i+0.5) / n; | |
144 s += input[k] * cos(a); | |
145 } | |
146 output[i] = 2 * s / n; | |
147 } | |
148 } | |
149 static void dct_ref(float *output, float *input, int nbits) | |
150 { | |
151 int n = 1<<nbits; | |
152 int k, i; | |
153 double a, s; | |
154 | |
155 /* do it by hand */ | |
156 for (k = 0; k < n; k++) { | |
157 s = 0; | |
158 for (i = 0; i < n; i++) { | |
159 a = M_PI*k*(i+0.5) / n; | |
160 s += input[i] * cos(a); | |
161 } | |
162 output[k] = s; | |
163 } | |
164 } | |
165 | |
781 | 166 |
10074
c4a83f3a5c9f
bring back some randomness in fft-test. (regression in r18070)
lorenm
parents:
9674
diff
changeset
|
167 static float frandom(AVLFG *prng) |
781 | 168 { |
10074
c4a83f3a5c9f
bring back some randomness in fft-test. (regression in r18070)
lorenm
parents:
9674
diff
changeset
|
169 return (int16_t)av_lfg_get(prng) / 32768.0; |
781 | 170 } |
171 | |
9295
b225f51903af
Mark non-exported functions in test and example programs as static.
diego
parents:
9199
diff
changeset
|
172 static int64_t gettime(void) |
781 | 173 { |
174 struct timeval tv; | |
175 gettimeofday(&tv,NULL); | |
1064 | 176 return (int64_t)tv.tv_sec * 1000000 + tv.tv_usec; |
781 | 177 } |
178 | |
9674
dac20d8df581
Support for testing (i)MDCT output scale factor in fft-test tool.
serge
parents:
9658
diff
changeset
|
179 static void check_diff(float *tab1, float *tab2, int n, double scale) |
781 | 180 { |
181 int i; | |
5417 | 182 double max= 0; |
183 double error= 0; | |
781 | 184 |
10807 | 185 for (i = 0; i < n; i++) { |
9674
dac20d8df581
Support for testing (i)MDCT output scale factor in fft-test tool.
serge
parents:
9658
diff
changeset
|
186 double e= fabsf(tab1[i] - (tab2[i] / scale)); |
5417 | 187 if (e >= 1e-3) { |
2967 | 188 av_log(NULL, AV_LOG_ERROR, "ERROR %d: %f %f\n", |
781 | 189 i, tab1[i], tab2[i]); |
190 } | |
5417 | 191 error+= e*e; |
192 if(e>max) max= e; | |
781 | 193 } |
5417 | 194 av_log(NULL, AV_LOG_INFO, "max:%f e:%g\n", max, sqrt(error)/n); |
781 | 195 } |
196 | |
197 | |
9295
b225f51903af
Mark non-exported functions in test and example programs as static.
diego
parents:
9199
diff
changeset
|
198 static void help(void) |
781 | 199 { |
2593
786ccf72ccd5
printf -> av_log patch by (Benjamin Larsson <>banan student.ltu se)
michael
parents:
1879
diff
changeset
|
200 av_log(NULL, AV_LOG_INFO,"usage: fft-test [-h] [-s] [-i] [-n b]\n" |
781 | 201 "-h print this help\n" |
202 "-s speed test\n" | |
203 "-m (I)MDCT test\n" | |
10944 | 204 "-d (I)DCT test\n" |
781 | 205 "-i inverse transform test\n" |
206 "-n b set the transform size to 2^b\n" | |
9674
dac20d8df581
Support for testing (i)MDCT output scale factor in fft-test tool.
serge
parents:
9658
diff
changeset
|
207 "-f x set scale factor for output data of (I)MDCT to x\n" |
781 | 208 ); |
209 exit(1); | |
210 } | |
211 | |
10846
8dbceaa5fa2f
fft-test: Replace do_mdct with a tf_transform enum and switch on it.
alexc
parents:
10807
diff
changeset
|
212 enum tf_transform { |
8dbceaa5fa2f
fft-test: Replace do_mdct with a tf_transform enum and switch on it.
alexc
parents:
10807
diff
changeset
|
213 TRANSFORM_FFT, |
8dbceaa5fa2f
fft-test: Replace do_mdct with a tf_transform enum and switch on it.
alexc
parents:
10807
diff
changeset
|
214 TRANSFORM_MDCT, |
10847 | 215 TRANSFORM_RDFT, |
10944 | 216 TRANSFORM_DCT, |
10846
8dbceaa5fa2f
fft-test: Replace do_mdct with a tf_transform enum and switch on it.
alexc
parents:
10807
diff
changeset
|
217 }; |
781 | 218 |
219 int main(int argc, char **argv) | |
220 { | |
221 FFTComplex *tab, *tab1, *tab_ref; | |
7546 | 222 FFTSample *tab2; |
781 | 223 int it, i, c; |
224 int do_speed = 0; | |
10846
8dbceaa5fa2f
fft-test: Replace do_mdct with a tf_transform enum and switch on it.
alexc
parents:
10807
diff
changeset
|
225 enum tf_transform transform = TRANSFORM_FFT; |
781 | 226 int do_inverse = 0; |
227 FFTContext s1, *s = &s1; | |
10199 | 228 FFTContext m1, *m = &m1; |
10847 | 229 RDFTContext r1, *r = &r1; |
10944 | 230 DCTContext d1, *d = &d1; |
10847 | 231 int fft_nbits, fft_size, fft_size_2; |
9674
dac20d8df581
Support for testing (i)MDCT output scale factor in fft-test tool.
serge
parents:
9658
diff
changeset
|
232 double scale = 1.0; |
10074
c4a83f3a5c9f
bring back some randomness in fft-test. (regression in r18070)
lorenm
parents:
9674
diff
changeset
|
233 AVLFG prng; |
c4a83f3a5c9f
bring back some randomness in fft-test. (regression in r18070)
lorenm
parents:
9674
diff
changeset
|
234 av_lfg_init(&prng, 1); |
781 | 235 |
236 fft_nbits = 9; | |
237 for(;;) { | |
10944 | 238 c = getopt(argc, argv, "hsimrdn:f:"); |
781 | 239 if (c == -1) |
240 break; | |
241 switch(c) { | |
242 case 'h': | |
243 help(); | |
244 break; | |
245 case 's': | |
246 do_speed = 1; | |
247 break; | |
248 case 'i': | |
249 do_inverse = 1; | |
250 break; | |
251 case 'm': | |
10846
8dbceaa5fa2f
fft-test: Replace do_mdct with a tf_transform enum and switch on it.
alexc
parents:
10807
diff
changeset
|
252 transform = TRANSFORM_MDCT; |
781 | 253 break; |
10847 | 254 case 'r': |
255 transform = TRANSFORM_RDFT; | |
256 break; | |
10944 | 257 case 'd': |
258 transform = TRANSFORM_DCT; | |
259 break; | |
781 | 260 case 'n': |
261 fft_nbits = atoi(optarg); | |
262 break; | |
9674
dac20d8df581
Support for testing (i)MDCT output scale factor in fft-test tool.
serge
parents:
9658
diff
changeset
|
263 case 'f': |
dac20d8df581
Support for testing (i)MDCT output scale factor in fft-test tool.
serge
parents:
9658
diff
changeset
|
264 scale = atof(optarg); |
dac20d8df581
Support for testing (i)MDCT output scale factor in fft-test tool.
serge
parents:
9658
diff
changeset
|
265 break; |
781 | 266 } |
267 } | |
268 | |
269 fft_size = 1 << fft_nbits; | |
10847 | 270 fft_size_2 = fft_size >> 1; |
781 | 271 tab = av_malloc(fft_size * sizeof(FFTComplex)); |
272 tab1 = av_malloc(fft_size * sizeof(FFTComplex)); | |
273 tab_ref = av_malloc(fft_size * sizeof(FFTComplex)); | |
274 tab2 = av_malloc(fft_size * sizeof(FFTSample)); | |
275 | |
10846
8dbceaa5fa2f
fft-test: Replace do_mdct with a tf_transform enum and switch on it.
alexc
parents:
10807
diff
changeset
|
276 switch (transform) { |
8dbceaa5fa2f
fft-test: Replace do_mdct with a tf_transform enum and switch on it.
alexc
parents:
10807
diff
changeset
|
277 case TRANSFORM_MDCT: |
9674
dac20d8df581
Support for testing (i)MDCT output scale factor in fft-test tool.
serge
parents:
9658
diff
changeset
|
278 av_log(NULL, AV_LOG_INFO,"Scale factor is set to %f\n", scale); |
781 | 279 if (do_inverse) |
2593
786ccf72ccd5
printf -> av_log patch by (Benjamin Larsson <>banan student.ltu se)
michael
parents:
1879
diff
changeset
|
280 av_log(NULL, AV_LOG_INFO,"IMDCT"); |
781 | 281 else |
2593
786ccf72ccd5
printf -> av_log patch by (Benjamin Larsson <>banan student.ltu se)
michael
parents:
1879
diff
changeset
|
282 av_log(NULL, AV_LOG_INFO,"MDCT"); |
9674
dac20d8df581
Support for testing (i)MDCT output scale factor in fft-test tool.
serge
parents:
9658
diff
changeset
|
283 ff_mdct_init(m, fft_nbits, do_inverse, scale); |
10846
8dbceaa5fa2f
fft-test: Replace do_mdct with a tf_transform enum and switch on it.
alexc
parents:
10807
diff
changeset
|
284 break; |
8dbceaa5fa2f
fft-test: Replace do_mdct with a tf_transform enum and switch on it.
alexc
parents:
10807
diff
changeset
|
285 case TRANSFORM_FFT: |
781 | 286 if (do_inverse) |
2593
786ccf72ccd5
printf -> av_log patch by (Benjamin Larsson <>banan student.ltu se)
michael
parents:
1879
diff
changeset
|
287 av_log(NULL, AV_LOG_INFO,"IFFT"); |
781 | 288 else |
2593
786ccf72ccd5
printf -> av_log patch by (Benjamin Larsson <>banan student.ltu se)
michael
parents:
1879
diff
changeset
|
289 av_log(NULL, AV_LOG_INFO,"FFT"); |
1879
dd63cb7e5080
fft_*() renamed into ff_fft_*() patch by (Gildas Bazin <gbazin at altern dot org>)
michael
parents:
1106
diff
changeset
|
290 ff_fft_init(s, fft_nbits, do_inverse); |
781 | 291 fft_ref_init(fft_nbits, do_inverse); |
10846
8dbceaa5fa2f
fft-test: Replace do_mdct with a tf_transform enum and switch on it.
alexc
parents:
10807
diff
changeset
|
292 break; |
10847 | 293 case TRANSFORM_RDFT: |
294 if (do_inverse) | |
11391 | 295 av_log(NULL, AV_LOG_INFO,"IDFT_C2R"); |
10847 | 296 else |
11391 | 297 av_log(NULL, AV_LOG_INFO,"DFT_R2C"); |
298 ff_rdft_init(r, fft_nbits, do_inverse ? IDFT_C2R : DFT_R2C); | |
10847 | 299 fft_ref_init(fft_nbits, do_inverse); |
300 break; | |
10944 | 301 case TRANSFORM_DCT: |
302 if (do_inverse) | |
303 av_log(NULL, AV_LOG_INFO,"IDCT"); | |
304 else | |
305 av_log(NULL, AV_LOG_INFO,"DCT"); | |
306 ff_dct_init(d, fft_nbits, do_inverse); | |
307 break; | |
781 | 308 } |
2593
786ccf72ccd5
printf -> av_log patch by (Benjamin Larsson <>banan student.ltu se)
michael
parents:
1879
diff
changeset
|
309 av_log(NULL, AV_LOG_INFO," %d test\n", fft_size); |
781 | 310 |
311 /* generate random data */ | |
312 | |
10807 | 313 for (i = 0; i < fft_size; i++) { |
10074
c4a83f3a5c9f
bring back some randomness in fft-test. (regression in r18070)
lorenm
parents:
9674
diff
changeset
|
314 tab1[i].re = frandom(&prng); |
c4a83f3a5c9f
bring back some randomness in fft-test. (regression in r18070)
lorenm
parents:
9674
diff
changeset
|
315 tab1[i].im = frandom(&prng); |
781 | 316 } |
317 | |
318 /* checking result */ | |
2593
786ccf72ccd5
printf -> av_log patch by (Benjamin Larsson <>banan student.ltu se)
michael
parents:
1879
diff
changeset
|
319 av_log(NULL, AV_LOG_INFO,"Checking...\n"); |
781 | 320 |
10846
8dbceaa5fa2f
fft-test: Replace do_mdct with a tf_transform enum and switch on it.
alexc
parents:
10807
diff
changeset
|
321 switch (transform) { |
8dbceaa5fa2f
fft-test: Replace do_mdct with a tf_transform enum and switch on it.
alexc
parents:
10807
diff
changeset
|
322 case TRANSFORM_MDCT: |
781 | 323 if (do_inverse) { |
5442 | 324 imdct_ref((float *)tab_ref, (float *)tab1, fft_nbits); |
7546 | 325 ff_imdct_calc(m, tab2, (float *)tab1); |
9674
dac20d8df581
Support for testing (i)MDCT output scale factor in fft-test tool.
serge
parents:
9658
diff
changeset
|
326 check_diff((float *)tab_ref, tab2, fft_size, scale); |
781 | 327 } else { |
5442 | 328 mdct_ref((float *)tab_ref, (float *)tab1, fft_nbits); |
2967 | 329 |
7546 | 330 ff_mdct_calc(m, tab2, (float *)tab1); |
781 | 331 |
9674
dac20d8df581
Support for testing (i)MDCT output scale factor in fft-test tool.
serge
parents:
9658
diff
changeset
|
332 check_diff((float *)tab_ref, tab2, fft_size / 2, scale); |
781 | 333 } |
10846
8dbceaa5fa2f
fft-test: Replace do_mdct with a tf_transform enum and switch on it.
alexc
parents:
10807
diff
changeset
|
334 break; |
8dbceaa5fa2f
fft-test: Replace do_mdct with a tf_transform enum and switch on it.
alexc
parents:
10807
diff
changeset
|
335 case TRANSFORM_FFT: |
781 | 336 memcpy(tab, tab1, fft_size * sizeof(FFTComplex)); |
1879
dd63cb7e5080
fft_*() renamed into ff_fft_*() patch by (Gildas Bazin <gbazin at altern dot org>)
michael
parents:
1106
diff
changeset
|
337 ff_fft_permute(s, tab); |
dd63cb7e5080
fft_*() renamed into ff_fft_*() patch by (Gildas Bazin <gbazin at altern dot org>)
michael
parents:
1106
diff
changeset
|
338 ff_fft_calc(s, tab); |
2967 | 339 |
781 | 340 fft_ref(tab_ref, tab1, fft_nbits); |
9674
dac20d8df581
Support for testing (i)MDCT output scale factor in fft-test tool.
serge
parents:
9658
diff
changeset
|
341 check_diff((float *)tab_ref, (float *)tab, fft_size * 2, 1.0); |
10846
8dbceaa5fa2f
fft-test: Replace do_mdct with a tf_transform enum and switch on it.
alexc
parents:
10807
diff
changeset
|
342 break; |
10847 | 343 case TRANSFORM_RDFT: |
344 if (do_inverse) { | |
345 tab1[ 0].im = 0; | |
346 tab1[fft_size_2].im = 0; | |
347 for (i = 1; i < fft_size_2; i++) { | |
348 tab1[fft_size_2+i].re = tab1[fft_size_2-i].re; | |
349 tab1[fft_size_2+i].im = -tab1[fft_size_2-i].im; | |
350 } | |
351 | |
352 memcpy(tab2, tab1, fft_size * sizeof(FFTSample)); | |
353 tab2[1] = tab1[fft_size_2].re; | |
354 | |
355 ff_rdft_calc(r, tab2); | |
356 fft_ref(tab_ref, tab1, fft_nbits); | |
357 for (i = 0; i < fft_size; i++) { | |
358 tab[i].re = tab2[i]; | |
359 tab[i].im = 0; | |
360 } | |
361 check_diff((float *)tab_ref, (float *)tab, fft_size * 2, 0.5); | |
362 } else { | |
363 for (i = 0; i < fft_size; i++) { | |
364 tab2[i] = tab1[i].re; | |
365 tab1[i].im = 0; | |
366 } | |
367 ff_rdft_calc(r, tab2); | |
368 fft_ref(tab_ref, tab1, fft_nbits); | |
369 tab_ref[0].im = tab_ref[fft_size_2].re; | |
370 check_diff((float *)tab_ref, (float *)tab2, fft_size, 1.0); | |
371 } | |
10944 | 372 break; |
373 case TRANSFORM_DCT: | |
374 memcpy(tab, tab1, fft_size * sizeof(FFTComplex)); | |
375 ff_dct_calc(d, tab); | |
376 if (do_inverse) { | |
377 idct_ref(tab_ref, tab1, fft_nbits); | |
378 } else { | |
379 dct_ref(tab_ref, tab1, fft_nbits); | |
380 } | |
381 check_diff((float *)tab_ref, (float *)tab, fft_size, 1.0); | |
382 break; | |
781 | 383 } |
384 | |
385 /* do a speed test */ | |
386 | |
387 if (do_speed) { | |
1064 | 388 int64_t time_start, duration; |
781 | 389 int nb_its; |
390 | |
2593
786ccf72ccd5
printf -> av_log patch by (Benjamin Larsson <>banan student.ltu se)
michael
parents:
1879
diff
changeset
|
391 av_log(NULL, AV_LOG_INFO,"Speed test...\n"); |
781 | 392 /* we measure during about 1 seconds */ |
393 nb_its = 1; | |
394 for(;;) { | |
395 time_start = gettime(); | |
10807 | 396 for (it = 0; it < nb_its; it++) { |
10846
8dbceaa5fa2f
fft-test: Replace do_mdct with a tf_transform enum and switch on it.
alexc
parents:
10807
diff
changeset
|
397 switch (transform) { |
8dbceaa5fa2f
fft-test: Replace do_mdct with a tf_transform enum and switch on it.
alexc
parents:
10807
diff
changeset
|
398 case TRANSFORM_MDCT: |
781 | 399 if (do_inverse) { |
7546 | 400 ff_imdct_calc(m, (float *)tab, (float *)tab1); |
781 | 401 } else { |
7546 | 402 ff_mdct_calc(m, (float *)tab, (float *)tab1); |
781 | 403 } |
10846
8dbceaa5fa2f
fft-test: Replace do_mdct with a tf_transform enum and switch on it.
alexc
parents:
10807
diff
changeset
|
404 break; |
8dbceaa5fa2f
fft-test: Replace do_mdct with a tf_transform enum and switch on it.
alexc
parents:
10807
diff
changeset
|
405 case TRANSFORM_FFT: |
781 | 406 memcpy(tab, tab1, fft_size * sizeof(FFTComplex)); |
1879
dd63cb7e5080
fft_*() renamed into ff_fft_*() patch by (Gildas Bazin <gbazin at altern dot org>)
michael
parents:
1106
diff
changeset
|
407 ff_fft_calc(s, tab); |
10846
8dbceaa5fa2f
fft-test: Replace do_mdct with a tf_transform enum and switch on it.
alexc
parents:
10807
diff
changeset
|
408 break; |
10847 | 409 case TRANSFORM_RDFT: |
410 memcpy(tab2, tab1, fft_size * sizeof(FFTSample)); | |
411 ff_rdft_calc(r, tab2); | |
412 break; | |
10944 | 413 case TRANSFORM_DCT: |
414 memcpy(tab2, tab1, fft_size * sizeof(FFTSample)); | |
415 ff_dct_calc(d, tab2); | |
416 break; | |
781 | 417 } |
418 } | |
419 duration = gettime() - time_start; | |
420 if (duration >= 1000000) | |
421 break; | |
422 nb_its *= 2; | |
423 } | |
2967 | 424 av_log(NULL, AV_LOG_INFO,"time: %0.1f us/transform [total time=%0.2f s its=%d]\n", |
425 (double)duration / nb_its, | |
781 | 426 (double)duration / 1000000.0, |
427 nb_its); | |
428 } | |
2967 | 429 |
10846
8dbceaa5fa2f
fft-test: Replace do_mdct with a tf_transform enum and switch on it.
alexc
parents:
10807
diff
changeset
|
430 switch (transform) { |
8dbceaa5fa2f
fft-test: Replace do_mdct with a tf_transform enum and switch on it.
alexc
parents:
10807
diff
changeset
|
431 case TRANSFORM_MDCT: |
969 | 432 ff_mdct_end(m); |
10846
8dbceaa5fa2f
fft-test: Replace do_mdct with a tf_transform enum and switch on it.
alexc
parents:
10807
diff
changeset
|
433 break; |
8dbceaa5fa2f
fft-test: Replace do_mdct with a tf_transform enum and switch on it.
alexc
parents:
10807
diff
changeset
|
434 case TRANSFORM_FFT: |
1879
dd63cb7e5080
fft_*() renamed into ff_fft_*() patch by (Gildas Bazin <gbazin at altern dot org>)
michael
parents:
1106
diff
changeset
|
435 ff_fft_end(s); |
10846
8dbceaa5fa2f
fft-test: Replace do_mdct with a tf_transform enum and switch on it.
alexc
parents:
10807
diff
changeset
|
436 break; |
10847 | 437 case TRANSFORM_RDFT: |
438 ff_rdft_end(r); | |
439 break; | |
10944 | 440 case TRANSFORM_DCT: |
441 ff_dct_end(d); | |
442 break; | |
781 | 443 } |
444 return 0; | |
445 } |