Mercurial > libavcodec.hg
annotate dct-test.c @ 7321:2db97a3e51ed libavcodec
Simplify co(): do not abuse pointer aritmetics
author | vitor |
---|---|
date | Sat, 19 Jul 2008 15:41:15 +0000 |
parents | 83e7ee1790a8 |
children | eebc7209c47f |
rev | line source |
---|---|
3699
c537a97eec66
Add official LGPL license headers to the files that were missing them.
diego
parents:
3398
diff
changeset
|
1 /* |
c537a97eec66
Add official LGPL license headers to the files that were missing them.
diego
parents:
3398
diff
changeset
|
2 * (c) 2001 Fabrice Bellard |
4755
b7c27288e509
platform-independent restructuring and code simplification
diego
parents:
4754
diff
changeset
|
3 * 2007 Marc Hoffman <marc.hoffman@analog.com> |
3699
c537a97eec66
Add official LGPL license headers to the files that were missing them.
diego
parents:
3398
diff
changeset
|
4 * |
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3699
diff
changeset
|
5 * This file is part of FFmpeg. |
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3699
diff
changeset
|
6 * |
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3699
diff
changeset
|
7 * 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:
3398
diff
changeset
|
8 * 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:
3398
diff
changeset
|
9 * 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
|
10 * 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:
3398
diff
changeset
|
11 * |
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3699
diff
changeset
|
12 * 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:
3398
diff
changeset
|
13 * 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:
3398
diff
changeset
|
14 * 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:
3398
diff
changeset
|
15 * Lesser General Public License for more details. |
c537a97eec66
Add official LGPL license headers to the files that were missing them.
diego
parents:
3398
diff
changeset
|
16 * |
c537a97eec66
Add official LGPL license headers to the files that were missing them.
diego
parents:
3398
diff
changeset
|
17 * 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
|
18 * 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:
3398
diff
changeset
|
19 * 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:
3398
diff
changeset
|
20 */ |
c537a97eec66
Add official LGPL license headers to the files that were missing them.
diego
parents:
3398
diff
changeset
|
21 |
1106 | 22 /** |
23 * @file dct-test.c | |
2967 | 24 * DCT test. (c) 2001 Fabrice Bellard. |
1106 | 25 * Started from sample code by Juan J. Sierralta P. |
26 */ | |
27 | |
0 | 28 #include <stdlib.h> |
29 #include <stdio.h> | |
30 #include <string.h> | |
31 #include <sys/time.h> | |
32 #include <unistd.h> | |
5118
3b190bc34546
Add some #includes to allow compilation without HAVE_AV_CONFIG_H.
diego
parents:
5110
diff
changeset
|
33 #include <math.h> |
0 | 34 |
7130
601509a430f7
Replace redundant MAX macro declaration by proper use of FFMAX.
diego
parents:
7125
diff
changeset
|
35 #include "libavutil/common.h" |
0 | 36 |
633 | 37 #include "simple_idct.h" |
1557 | 38 #include "faandct.h" |
6407 | 39 #include "faanidct.h" |
6585 | 40 #include "i386/idct_xvid.h" |
33 | 41 |
2872 | 42 #undef printf |
5379
e9f8a337c5ce
Fix the compilation of dct-test, fft-test and motion-test which are using
takis
parents:
5127
diff
changeset
|
43 #undef random |
2872 | 44 |
45 void *fast_memcpy(void *a, const void *b, size_t c){return memcpy(a,b,c);}; | |
46 | |
33 | 47 /* reference fdct/idct */ |
0 | 48 extern void fdct(DCTELEM *block); |
33 | 49 extern void idct(DCTELEM *block); |
0 | 50 extern void init_fdct(); |
51 | |
33 | 52 extern void ff_mmx_idct(DCTELEM *data); |
53 extern void ff_mmxext_idct(DCTELEM *data); | |
54 | |
633 | 55 extern void odivx_idct_c (short *block); |
56 | |
4755
b7c27288e509
platform-independent restructuring and code simplification
diego
parents:
4754
diff
changeset
|
57 // BFIN |
b7c27288e509
platform-independent restructuring and code simplification
diego
parents:
4754
diff
changeset
|
58 extern void ff_bfin_idct (DCTELEM *block) ; |
b7c27288e509
platform-independent restructuring and code simplification
diego
parents:
4754
diff
changeset
|
59 extern void ff_bfin_fdct (DCTELEM *block) ; |
b7c27288e509
platform-independent restructuring and code simplification
diego
parents:
4754
diff
changeset
|
60 |
b7c27288e509
platform-independent restructuring and code simplification
diego
parents:
4754
diff
changeset
|
61 // ALTIVEC |
b7c27288e509
platform-independent restructuring and code simplification
diego
parents:
4754
diff
changeset
|
62 extern void fdct_altivec (DCTELEM *block); |
b7c27288e509
platform-independent restructuring and code simplification
diego
parents:
4754
diff
changeset
|
63 //extern void idct_altivec (DCTELEM *block);?? no routine |
b7c27288e509
platform-independent restructuring and code simplification
diego
parents:
4754
diff
changeset
|
64 |
b7c27288e509
platform-independent restructuring and code simplification
diego
parents:
4754
diff
changeset
|
65 |
b7c27288e509
platform-independent restructuring and code simplification
diego
parents:
4754
diff
changeset
|
66 struct algo { |
7125
65e7e714c770
Mark constant structure member as const to avoid some warnings.
diego
parents:
6602
diff
changeset
|
67 const char *name; |
4755
b7c27288e509
platform-independent restructuring and code simplification
diego
parents:
4754
diff
changeset
|
68 enum { FDCT, IDCT } is_idct; |
b7c27288e509
platform-independent restructuring and code simplification
diego
parents:
4754
diff
changeset
|
69 void (* func) (DCTELEM *block); |
b7c27288e509
platform-independent restructuring and code simplification
diego
parents:
4754
diff
changeset
|
70 void (* ref) (DCTELEM *block); |
7148 | 71 enum formattag { NO_PERM,MMX_PERM, MMX_SIMPLE_PERM, SCALE_PERM, SSE2_PERM } format; |
6543
948d9453432b
check mm_flags for each DCT and skips the ones that can't be run
gpoirier
parents:
6542
diff
changeset
|
72 int mm_support; |
4755
b7c27288e509
platform-independent restructuring and code simplification
diego
parents:
4754
diff
changeset
|
73 }; |
b7c27288e509
platform-independent restructuring and code simplification
diego
parents:
4754
diff
changeset
|
74 |
b7c27288e509
platform-independent restructuring and code simplification
diego
parents:
4754
diff
changeset
|
75 #ifndef FAAN_POSTSCALE |
b7c27288e509
platform-independent restructuring and code simplification
diego
parents:
4754
diff
changeset
|
76 #define FAAN_SCALE SCALE_PERM |
b7c27288e509
platform-independent restructuring and code simplification
diego
parents:
4754
diff
changeset
|
77 #else |
b7c27288e509
platform-independent restructuring and code simplification
diego
parents:
4754
diff
changeset
|
78 #define FAAN_SCALE NO_PERM |
b7c27288e509
platform-independent restructuring and code simplification
diego
parents:
4754
diff
changeset
|
79 #endif |
b7c27288e509
platform-independent restructuring and code simplification
diego
parents:
4754
diff
changeset
|
80 |
7155 | 81 static int cpu_flags; |
82 | |
4755
b7c27288e509
platform-independent restructuring and code simplification
diego
parents:
4754
diff
changeset
|
83 struct algo algos[] = { |
6542 | 84 {"REF-DBL", 0, fdct, fdct, NO_PERM}, |
85 {"FAAN", 0, ff_faandct, fdct, FAAN_SCALE}, | |
86 {"FAANI", 1, ff_faanidct, idct, NO_PERM}, | |
87 {"IJG-AAN-INT", 0, fdct_ifast, fdct, SCALE_PERM}, | |
88 {"IJG-LLM-INT", 0, ff_jpeg_fdct_islow, fdct, NO_PERM}, | |
89 {"REF-DBL", 1, idct, idct, NO_PERM}, | |
90 {"INT", 1, j_rev_dct, idct, MMX_PERM}, | |
91 {"SIMPLE-C", 1, ff_simple_idct, idct, NO_PERM}, | |
4755
b7c27288e509
platform-independent restructuring and code simplification
diego
parents:
4754
diff
changeset
|
92 |
5108 | 93 #ifdef HAVE_MMX |
6543
948d9453432b
check mm_flags for each DCT and skips the ones that can't be run
gpoirier
parents:
6542
diff
changeset
|
94 {"MMX", 0, ff_fdct_mmx, fdct, NO_PERM, MM_MMX}, |
5110 | 95 #ifdef HAVE_MMX2 |
6543
948d9453432b
check mm_flags for each DCT and skips the ones that can't be run
gpoirier
parents:
6542
diff
changeset
|
96 {"MMX2", 0, ff_fdct_mmx2, fdct, NO_PERM, MM_MMXEXT}, |
5110 | 97 #endif |
4755
b7c27288e509
platform-independent restructuring and code simplification
diego
parents:
4754
diff
changeset
|
98 |
5109 | 99 #ifdef CONFIG_GPL |
6543
948d9453432b
check mm_flags for each DCT and skips the ones that can't be run
gpoirier
parents:
6542
diff
changeset
|
100 {"LIBMPEG2-MMX", 1, ff_mmx_idct, idct, MMX_PERM, MM_MMX}, |
948d9453432b
check mm_flags for each DCT and skips the ones that can't be run
gpoirier
parents:
6542
diff
changeset
|
101 {"LIBMPEG2-MMXEXT", 1, ff_mmxext_idct, idct, MMX_PERM, MM_MMXEXT}, |
5109 | 102 #endif |
6543
948d9453432b
check mm_flags for each DCT and skips the ones that can't be run
gpoirier
parents:
6542
diff
changeset
|
103 {"SIMPLE-MMX", 1, ff_simple_idct_mmx, idct, MMX_SIMPLE_PERM, MM_MMX}, |
948d9453432b
check mm_flags for each DCT and skips the ones that can't be run
gpoirier
parents:
6542
diff
changeset
|
104 {"XVID-MMX", 1, ff_idct_xvid_mmx, idct, NO_PERM, MM_MMX}, |
948d9453432b
check mm_flags for each DCT and skips the ones that can't be run
gpoirier
parents:
6542
diff
changeset
|
105 {"XVID-MMX2", 1, ff_idct_xvid_mmx2, idct, NO_PERM, MM_MMXEXT}, |
6602 | 106 {"XVID-SSE2", 1, ff_idct_xvid_sse2, idct, SSE2_PERM, MM_SSE2}, |
4755
b7c27288e509
platform-independent restructuring and code simplification
diego
parents:
4754
diff
changeset
|
107 #endif |
b7c27288e509
platform-independent restructuring and code simplification
diego
parents:
4754
diff
changeset
|
108 |
b7c27288e509
platform-independent restructuring and code simplification
diego
parents:
4754
diff
changeset
|
109 #ifdef HAVE_ALTIVEC |
6543
948d9453432b
check mm_flags for each DCT and skips the ones that can't be run
gpoirier
parents:
6542
diff
changeset
|
110 {"altivecfdct", 0, fdct_altivec, fdct, NO_PERM, MM_ALTIVEC}, |
4755
b7c27288e509
platform-independent restructuring and code simplification
diego
parents:
4754
diff
changeset
|
111 #endif |
b7c27288e509
platform-independent restructuring and code simplification
diego
parents:
4754
diff
changeset
|
112 |
b7c27288e509
platform-independent restructuring and code simplification
diego
parents:
4754
diff
changeset
|
113 #ifdef ARCH_BFIN |
6542 | 114 {"BFINfdct", 0, ff_bfin_fdct, fdct, NO_PERM}, |
115 {"BFINidct", 1, ff_bfin_idct, idct, NO_PERM}, | |
4755
b7c27288e509
platform-independent restructuring and code simplification
diego
parents:
4754
diff
changeset
|
116 #endif |
b7c27288e509
platform-independent restructuring and code simplification
diego
parents:
4754
diff
changeset
|
117 |
b7c27288e509
platform-independent restructuring and code simplification
diego
parents:
4754
diff
changeset
|
118 { 0 } |
b7c27288e509
platform-independent restructuring and code simplification
diego
parents:
4754
diff
changeset
|
119 }; |
b7c27288e509
platform-independent restructuring and code simplification
diego
parents:
4754
diff
changeset
|
120 |
0 | 121 #define AANSCALE_BITS 12 |
122 static const unsigned short aanscales[64] = { | |
123 /* precomputed values scaled up by 14 bits */ | |
124 16384, 22725, 21407, 19266, 16384, 12873, 8867, 4520, | |
125 22725, 31521, 29692, 26722, 22725, 17855, 12299, 6270, | |
126 21407, 29692, 27969, 25172, 21407, 16819, 11585, 5906, | |
127 19266, 26722, 25172, 22654, 19266, 15137, 10426, 5315, | |
128 16384, 22725, 21407, 19266, 16384, 12873, 8867, 4520, | |
129 12873, 17855, 16819, 15137, 12873, 10114, 6967, 3552, | |
130 8867, 12299, 11585, 10426, 8867, 6967, 4799, 2446, | |
131 4520, 6270, 5906, 5315, 4520, 3552, 2446, 1247 | |
132 }; | |
133 | |
4197 | 134 uint8_t cropTbl[256 + 2 * MAX_NEG_CROP]; |
633 | 135 |
1064 | 136 int64_t gettime(void) |
0 | 137 { |
138 struct timeval tv; | |
139 gettimeofday(&tv,NULL); | |
1064 | 140 return (int64_t)tv.tv_sec * 1000000 + tv.tv_usec; |
0 | 141 } |
142 | |
143 #define NB_ITS 20000 | |
144 #define NB_ITS_SPEED 50000 | |
145 | |
33 | 146 static short idct_mmx_perm[64]; |
147 | |
633 | 148 static short idct_simple_mmx_perm[64]={ |
2979 | 149 0x00, 0x08, 0x04, 0x09, 0x01, 0x0C, 0x05, 0x0D, |
150 0x10, 0x18, 0x14, 0x19, 0x11, 0x1C, 0x15, 0x1D, | |
151 0x20, 0x28, 0x24, 0x29, 0x21, 0x2C, 0x25, 0x2D, | |
152 0x12, 0x1A, 0x16, 0x1B, 0x13, 0x1E, 0x17, 0x1F, | |
153 0x02, 0x0A, 0x06, 0x0B, 0x03, 0x0E, 0x07, 0x0F, | |
154 0x30, 0x38, 0x34, 0x39, 0x31, 0x3C, 0x35, 0x3D, | |
155 0x22, 0x2A, 0x26, 0x2B, 0x23, 0x2E, 0x27, 0x2F, | |
156 0x32, 0x3A, 0x36, 0x3B, 0x33, 0x3E, 0x37, 0x3F, | |
633 | 157 }; |
158 | |
6602 | 159 static const uint8_t idct_sse2_row_perm[8] = {0, 4, 1, 5, 2, 6, 3, 7}; |
160 | |
33 | 161 void idct_mmx_init(void) |
162 { | |
163 int i; | |
164 | |
165 /* the mmx/mmxext idct uses a reordered input, so we patch scan tables */ | |
166 for (i = 0; i < 64; i++) { | |
2979 | 167 idct_mmx_perm[i] = (i & 0x38) | ((i & 6) >> 1) | ((i & 1) << 2); |
168 // idct_simple_mmx_perm[i] = simple_block_permute_op(i); | |
33 | 169 } |
170 } | |
171 | |
6544
8a059debc2ba
Altivec and SSE2 require 16-byte alignment, so make sure they get it
gpoirier
parents:
6543
diff
changeset
|
172 static DCTELEM block[64] __attribute__ ((aligned (16))); |
33 | 173 static DCTELEM block1[64] __attribute__ ((aligned (8))); |
633 | 174 static DCTELEM block_org[64] __attribute__ ((aligned (8))); |
33 | 175 |
7155 | 176 static inline void mmx_emms(void) |
177 { | |
178 #ifdef HAVE_MMX | |
179 if (cpu_flags & MM_MMX) | |
180 asm volatile ("emms\n\t"); | |
181 #endif | |
182 } | |
183 | |
33 | 184 void dct_error(const char *name, int is_idct, |
185 void (*fdct_func)(DCTELEM *block), | |
4755
b7c27288e509
platform-independent restructuring and code simplification
diego
parents:
4754
diff
changeset
|
186 void (*fdct_ref)(DCTELEM *block), int form, int test) |
0 | 187 { |
188 int it, i, scale; | |
189 int err_inf, v; | |
1064 | 190 int64_t err2, ti, ti1, it1; |
191 int64_t sysErr[64], sysErrMax=0; | |
633 | 192 int maxout=0; |
193 int blockSumErrMax=0, blockSumErr; | |
0 | 194 |
195 srandom(0); | |
196 | |
197 err_inf = 0; | |
198 err2 = 0; | |
633 | 199 for(i=0; i<64; i++) sysErr[i]=0; |
0 | 200 for(it=0;it<NB_ITS;it++) { |
633 | 201 for(i=0;i<64;i++) |
202 block1[i] = 0; | |
203 switch(test){ | |
2967 | 204 case 0: |
633 | 205 for(i=0;i<64;i++) |
206 block1[i] = (random() % 512) -256; | |
635 | 207 if (is_idct){ |
633 | 208 fdct(block1); |
635 | 209 |
210 for(i=0;i<64;i++) | |
211 block1[i]>>=3; | |
212 } | |
633 | 213 break; |
214 case 1:{ | |
215 int num= (random()%10)+1; | |
216 for(i=0;i<num;i++) | |
217 block1[random()%64] = (random() % 512) -256; | |
218 }break; | |
219 case 2: | |
220 block1[0]= (random()%4096)-2048; | |
221 block1[63]= (block1[0]&1)^1; | |
222 break; | |
223 } | |
33 | 224 |
633 | 225 #if 0 // simulate mismatch control |
226 { int sum=0; | |
227 for(i=0;i<64;i++) | |
228 sum+=block1[i]; | |
229 | |
2967 | 230 if((sum&1)==0) block1[63]^=1; |
633 | 231 } |
232 #endif | |
233 | |
234 for(i=0; i<64; i++) | |
235 block_org[i]= block1[i]; | |
33 | 236 |
4755
b7c27288e509
platform-independent restructuring and code simplification
diego
parents:
4754
diff
changeset
|
237 if (form == MMX_PERM) { |
633 | 238 for(i=0;i<64;i++) |
33 | 239 block[idct_mmx_perm[i]] = block1[i]; |
4755
b7c27288e509
platform-independent restructuring and code simplification
diego
parents:
4754
diff
changeset
|
240 } else if (form == MMX_SIMPLE_PERM) { |
633 | 241 for(i=0;i<64;i++) |
242 block[idct_simple_mmx_perm[i]] = block1[i]; | |
243 | |
6602 | 244 } else if (form == SSE2_PERM) { |
245 for(i=0; i<64; i++) | |
246 block[(i&0x38) | idct_sse2_row_perm[i&7]] = block1[i]; | |
2979 | 247 } else { |
633 | 248 for(i=0; i<64; i++) |
249 block[i]= block1[i]; | |
33 | 250 } |
633 | 251 #if 0 // simulate mismatch control for tested IDCT but not the ref |
252 { int sum=0; | |
253 for(i=0;i<64;i++) | |
254 sum+=block[i]; | |
255 | |
2967 | 256 if((sum&1)==0) block[63]^=1; |
633 | 257 } |
258 #endif | |
33 | 259 |
0 | 260 fdct_func(block); |
7155 | 261 mmx_emms(); |
33 | 262 |
4755
b7c27288e509
platform-independent restructuring and code simplification
diego
parents:
4754
diff
changeset
|
263 if (form == SCALE_PERM) { |
0 | 264 for(i=0; i<64; i++) { |
635 | 265 scale = 8*(1 << (AANSCALE_BITS + 11)) / aanscales[i]; |
633 | 266 block[i] = (block[i] * scale /*+ (1<<(AANSCALE_BITS-1))*/) >> AANSCALE_BITS; |
267 } | |
268 } | |
269 | |
33 | 270 fdct_ref(block1); |
0 | 271 |
633 | 272 blockSumErr=0; |
0 | 273 for(i=0;i<64;i++) { |
274 v = abs(block[i] - block1[i]); | |
275 if (v > err_inf) | |
276 err_inf = v; | |
277 err2 += v * v; | |
2979 | 278 sysErr[i] += block[i] - block1[i]; |
279 blockSumErr += v; | |
280 if( abs(block[i])>maxout) maxout=abs(block[i]); | |
0 | 281 } |
633 | 282 if(blockSumErrMax < blockSumErr) blockSumErrMax= blockSumErr; |
283 #if 0 // print different matrix pairs | |
284 if(blockSumErr){ | |
285 printf("\n"); | |
286 for(i=0; i<64; i++){ | |
287 if((i&7)==0) printf("\n"); | |
288 printf("%4d ", block_org[i]); | |
289 } | |
290 for(i=0; i<64; i++){ | |
291 if((i&7)==0) printf("\n"); | |
292 printf("%4d ", block[i] - block1[i]); | |
293 } | |
294 } | |
295 #endif | |
0 | 296 } |
7130
601509a430f7
Replace redundant MAX macro declaration by proper use of FFMAX.
diego
parents:
7125
diff
changeset
|
297 for(i=0; i<64; i++) sysErrMax= FFMAX(sysErrMax, FFABS(sysErr[i])); |
2967 | 298 |
633 | 299 #if 1 // dump systematic errors |
300 for(i=0; i<64; i++){ | |
2979 | 301 if(i%8==0) printf("\n"); |
633 | 302 printf("%5d ", (int)sysErr[i]); |
303 } | |
304 printf("\n"); | |
305 #endif | |
2967 | 306 |
633 | 307 printf("%s %s: err_inf=%d err2=%0.8f syserr=%0.8f maxout=%d blockSumErr=%d\n", |
33 | 308 is_idct ? "IDCT" : "DCT", |
633 | 309 name, err_inf, (double)err2 / NB_ITS / 64.0, (double)sysErrMax / NB_ITS, maxout, blockSumErrMax); |
310 #if 1 //Speed test | |
0 | 311 /* speed test */ |
633 | 312 for(i=0;i<64;i++) |
313 block1[i] = 0; | |
314 switch(test){ | |
2967 | 315 case 0: |
633 | 316 for(i=0;i<64;i++) |
317 block1[i] = (random() % 512) -256; | |
635 | 318 if (is_idct){ |
633 | 319 fdct(block1); |
635 | 320 |
321 for(i=0;i<64;i++) | |
322 block1[i]>>=3; | |
323 } | |
633 | 324 break; |
325 case 1:{ | |
326 case 2: | |
327 block1[0] = (random() % 512) -256; | |
328 block1[1] = (random() % 512) -256; | |
329 block1[2] = (random() % 512) -256; | |
330 block1[3] = (random() % 512) -256; | |
331 }break; | |
332 } | |
0 | 333 |
4755
b7c27288e509
platform-independent restructuring and code simplification
diego
parents:
4754
diff
changeset
|
334 if (form == MMX_PERM) { |
633 | 335 for(i=0;i<64;i++) |
33 | 336 block[idct_mmx_perm[i]] = block1[i]; |
4755
b7c27288e509
platform-independent restructuring and code simplification
diego
parents:
4754
diff
changeset
|
337 } else if(form == MMX_SIMPLE_PERM) { |
633 | 338 for(i=0;i<64;i++) |
339 block[idct_simple_mmx_perm[i]] = block1[i]; | |
340 } else { | |
341 for(i=0; i<64; i++) | |
342 block[i]= block1[i]; | |
33 | 343 } |
344 | |
0 | 345 ti = gettime(); |
346 it1 = 0; | |
347 do { | |
348 for(it=0;it<NB_ITS_SPEED;it++) { | |
633 | 349 for(i=0; i<64; i++) |
350 block[i]= block1[i]; | |
351 // memcpy(block, block1, sizeof(DCTELEM) * 64); | |
5127 | 352 // do not memcpy especially not fastmemcpy because it does movntq !!! |
0 | 353 fdct_func(block); |
354 } | |
355 it1 += NB_ITS_SPEED; | |
356 ti1 = gettime() - ti; | |
357 } while (ti1 < 1000000); | |
7155 | 358 mmx_emms(); |
0 | 359 |
633 | 360 printf("%s %s: %0.1f kdct/s\n", |
33 | 361 is_idct ? "IDCT" : "DCT", |
0 | 362 name, (double)it1 * 1000.0 / (double)ti1); |
633 | 363 #endif |
0 | 364 } |
365 | |
1064 | 366 static uint8_t img_dest[64] __attribute__ ((aligned (8))); |
367 static uint8_t img_dest1[64] __attribute__ ((aligned (8))); | |
720 | 368 |
1064 | 369 void idct248_ref(uint8_t *dest, int linesize, int16_t *block) |
720 | 370 { |
371 static int init; | |
372 static double c8[8][8]; | |
373 static double c4[4][4]; | |
374 double block1[64], block2[64], block3[64]; | |
375 double s, sum, v; | |
376 int i, j, k; | |
377 | |
378 if (!init) { | |
379 init = 1; | |
380 | |
381 for(i=0;i<8;i++) { | |
382 sum = 0; | |
383 for(j=0;j<8;j++) { | |
384 s = (i==0) ? sqrt(1.0/8.0) : sqrt(1.0/4.0); | |
385 c8[i][j] = s * cos(M_PI * i * (j + 0.5) / 8.0); | |
386 sum += c8[i][j] * c8[i][j]; | |
387 } | |
388 } | |
2967 | 389 |
720 | 390 for(i=0;i<4;i++) { |
391 sum = 0; | |
392 for(j=0;j<4;j++) { | |
393 s = (i==0) ? sqrt(1.0/4.0) : sqrt(1.0/2.0); | |
394 c4[i][j] = s * cos(M_PI * i * (j + 0.5) / 4.0); | |
395 sum += c4[i][j] * c4[i][j]; | |
396 } | |
397 } | |
398 } | |
399 | |
400 /* butterfly */ | |
722
ff90043f4a2d
in fact IDCT248 needs to be normalized as I suspected
bellard
parents:
720
diff
changeset
|
401 s = 0.5 * sqrt(2.0); |
720 | 402 for(i=0;i<4;i++) { |
403 for(j=0;j<8;j++) { | |
722
ff90043f4a2d
in fact IDCT248 needs to be normalized as I suspected
bellard
parents:
720
diff
changeset
|
404 block1[8*(2*i)+j] = (block[8*(2*i)+j] + block[8*(2*i+1)+j]) * s; |
ff90043f4a2d
in fact IDCT248 needs to be normalized as I suspected
bellard
parents:
720
diff
changeset
|
405 block1[8*(2*i+1)+j] = (block[8*(2*i)+j] - block[8*(2*i+1)+j]) * s; |
720 | 406 } |
407 } | |
408 | |
409 /* idct8 on lines */ | |
410 for(i=0;i<8;i++) { | |
411 for(j=0;j<8;j++) { | |
412 sum = 0; | |
413 for(k=0;k<8;k++) | |
414 sum += c8[k][j] * block1[8*i+k]; | |
415 block2[8*i+j] = sum; | |
416 } | |
417 } | |
418 | |
419 /* idct4 */ | |
420 for(i=0;i<8;i++) { | |
421 for(j=0;j<4;j++) { | |
422 /* top */ | |
423 sum = 0; | |
424 for(k=0;k<4;k++) | |
425 sum += c4[k][j] * block2[8*(2*k)+i]; | |
426 block3[8*(2*j)+i] = sum; | |
427 | |
428 /* bottom */ | |
429 sum = 0; | |
430 for(k=0;k<4;k++) | |
431 sum += c4[k][j] * block2[8*(2*k+1)+i]; | |
432 block3[8*(2*j+1)+i] = sum; | |
433 } | |
434 } | |
435 | |
436 /* clamp and store the result */ | |
437 for(i=0;i<8;i++) { | |
438 for(j=0;j<8;j++) { | |
722
ff90043f4a2d
in fact IDCT248 needs to be normalized as I suspected
bellard
parents:
720
diff
changeset
|
439 v = block3[8*i+j]; |
720 | 440 if (v < 0) |
441 v = 0; | |
442 else if (v > 255) | |
443 v = 255; | |
444 dest[i * linesize + j] = (int)rint(v); | |
445 } | |
446 } | |
447 } | |
448 | |
2967 | 449 void idct248_error(const char *name, |
1064 | 450 void (*idct248_put)(uint8_t *dest, int line_size, int16_t *block)) |
720 | 451 { |
452 int it, i, it1, ti, ti1, err_max, v; | |
453 | |
454 srandom(0); | |
2967 | 455 |
720 | 456 /* just one test to see if code is correct (precision is less |
457 important here) */ | |
458 err_max = 0; | |
459 for(it=0;it<NB_ITS;it++) { | |
2967 | 460 |
722
ff90043f4a2d
in fact IDCT248 needs to be normalized as I suspected
bellard
parents:
720
diff
changeset
|
461 /* XXX: use forward transform to generate values */ |
720 | 462 for(i=0;i<64;i++) |
722
ff90043f4a2d
in fact IDCT248 needs to be normalized as I suspected
bellard
parents:
720
diff
changeset
|
463 block1[i] = (random() % 256) - 128; |
ff90043f4a2d
in fact IDCT248 needs to be normalized as I suspected
bellard
parents:
720
diff
changeset
|
464 block1[0] += 1024; |
ff90043f4a2d
in fact IDCT248 needs to be normalized as I suspected
bellard
parents:
720
diff
changeset
|
465 |
720 | 466 for(i=0; i<64; i++) |
467 block[i]= block1[i]; | |
468 idct248_ref(img_dest1, 8, block); | |
2967 | 469 |
722
ff90043f4a2d
in fact IDCT248 needs to be normalized as I suspected
bellard
parents:
720
diff
changeset
|
470 for(i=0; i<64; i++) |
ff90043f4a2d
in fact IDCT248 needs to be normalized as I suspected
bellard
parents:
720
diff
changeset
|
471 block[i]= block1[i]; |
ff90043f4a2d
in fact IDCT248 needs to be normalized as I suspected
bellard
parents:
720
diff
changeset
|
472 idct248_put(img_dest, 8, block); |
2967 | 473 |
722
ff90043f4a2d
in fact IDCT248 needs to be normalized as I suspected
bellard
parents:
720
diff
changeset
|
474 for(i=0;i<64;i++) { |
ff90043f4a2d
in fact IDCT248 needs to be normalized as I suspected
bellard
parents:
720
diff
changeset
|
475 v = abs((int)img_dest[i] - (int)img_dest1[i]); |
ff90043f4a2d
in fact IDCT248 needs to be normalized as I suspected
bellard
parents:
720
diff
changeset
|
476 if (v == 255) |
ff90043f4a2d
in fact IDCT248 needs to be normalized as I suspected
bellard
parents:
720
diff
changeset
|
477 printf("%d %d\n", img_dest[i], img_dest1[i]); |
ff90043f4a2d
in fact IDCT248 needs to be normalized as I suspected
bellard
parents:
720
diff
changeset
|
478 if (v > err_max) |
ff90043f4a2d
in fact IDCT248 needs to be normalized as I suspected
bellard
parents:
720
diff
changeset
|
479 err_max = v; |
ff90043f4a2d
in fact IDCT248 needs to be normalized as I suspected
bellard
parents:
720
diff
changeset
|
480 } |
720 | 481 #if 0 |
482 printf("ref=\n"); | |
483 for(i=0;i<8;i++) { | |
484 int j; | |
485 for(j=0;j<8;j++) { | |
486 printf(" %3d", img_dest1[i*8+j]); | |
487 } | |
488 printf("\n"); | |
489 } | |
2967 | 490 |
720 | 491 printf("out=\n"); |
492 for(i=0;i<8;i++) { | |
493 int j; | |
494 for(j=0;j<8;j++) { | |
495 printf(" %3d", img_dest[i*8+j]); | |
496 } | |
497 printf("\n"); | |
498 } | |
499 #endif | |
500 } | |
501 printf("%s %s: err_inf=%d\n", | |
502 1 ? "IDCT248" : "DCT248", | |
503 name, err_max); | |
504 | |
505 ti = gettime(); | |
506 it1 = 0; | |
507 do { | |
508 for(it=0;it<NB_ITS_SPEED;it++) { | |
509 for(i=0; i<64; i++) | |
510 block[i]= block1[i]; | |
511 // memcpy(block, block1, sizeof(DCTELEM) * 64); | |
5127 | 512 // do not memcpy especially not fastmemcpy because it does movntq !!! |
720 | 513 idct248_put(img_dest, 8, block); |
514 } | |
515 it1 += NB_ITS_SPEED; | |
516 ti1 = gettime() - ti; | |
517 } while (ti1 < 1000000); | |
7155 | 518 mmx_emms(); |
720 | 519 |
520 printf("%s %s: %0.1f kdct/s\n", | |
521 1 ? "IDCT248" : "DCT248", | |
522 name, (double)it1 * 1000.0 / (double)ti1); | |
523 } | |
524 | |
33 | 525 void help(void) |
526 { | |
633 | 527 printf("dct-test [-i] [<test-number>]\n" |
528 "test-number 0 -> test with random matrixes\n" | |
529 " 1 -> test with random sparse matrixes\n" | |
530 " 2 -> do 3. test from mpeg4 std\n" | |
720 | 531 "-i test IDCT implementations\n" |
532 "-4 test IDCT248 implementations\n"); | |
33 | 533 } |
534 | |
0 | 535 int main(int argc, char **argv) |
536 { | |
720 | 537 int test_idct = 0, test_248_dct = 0; |
633 | 538 int c,i; |
539 int test=1; | |
7155 | 540 cpu_flags = mm_support(); |
33 | 541 |
0 | 542 init_fdct(); |
33 | 543 idct_mmx_init(); |
7135
6bd6a2da306e
Define mm_flags/support to be 0 on architectures where they don't exist.
astrange
parents:
7130
diff
changeset
|
544 |
4197 | 545 for(i=0;i<256;i++) cropTbl[i + MAX_NEG_CROP] = i; |
633 | 546 for(i=0;i<MAX_NEG_CROP;i++) { |
4197 | 547 cropTbl[i] = 0; |
548 cropTbl[i + MAX_NEG_CROP + 256] = 255; | |
633 | 549 } |
2967 | 550 |
33 | 551 for(;;) { |
720 | 552 c = getopt(argc, argv, "ih4"); |
33 | 553 if (c == -1) |
554 break; | |
555 switch(c) { | |
556 case 'i': | |
557 test_idct = 1; | |
558 break; | |
720 | 559 case '4': |
560 test_248_dct = 1; | |
561 break; | |
633 | 562 default : |
33 | 563 case 'h': |
564 help(); | |
4754 | 565 return 0; |
33 | 566 } |
567 } | |
2967 | 568 |
633 | 569 if(optind <argc) test= atoi(argv[optind]); |
2967 | 570 |
33 | 571 printf("ffmpeg DCT/IDCT test\n"); |
572 | |
720 | 573 if (test_248_dct) { |
6001 | 574 idct248_error("SIMPLE-C", ff_simple_idct248_put); |
33 | 575 } else { |
4755
b7c27288e509
platform-independent restructuring and code simplification
diego
parents:
4754
diff
changeset
|
576 for (i=0;algos[i].name;i++) |
7140
654f063dc099
Use a local variable instead of mm_flags in dct-test.
astrange
parents:
7135
diff
changeset
|
577 if (algos[i].is_idct == test_idct && !(~cpu_flags & algos[i].mm_support)) { |
4755
b7c27288e509
platform-independent restructuring and code simplification
diego
parents:
4754
diff
changeset
|
578 dct_error (algos[i].name, algos[i].is_idct, algos[i].func, algos[i].ref, algos[i].format, test); |
720 | 579 } |
33 | 580 } |
0 | 581 return 0; |
582 } |