[svn] / branches / dev-api-4 / xvidcore / examples / xvid_bench.c Repository:
ViewVC logotype

Annotation of /branches/dev-api-4/xvidcore/examples/xvid_bench.c

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1392 - (view) (download)

1 : edgomez 1054 /*****************************************************************************
2 : Isibaar 225 *
3 : edgomez 1054 * XVID MPEG-4 VIDEO CODEC
4 :     * - Unit tests and benches -
5 : Isibaar 225 *
6 : edgomez 1054 * Copyright(C) 2002 Pascal Massimino <skal@planet-d.net>
7 : Isibaar 225 *
8 : edgomez 1054 * This program is free software; you can redistribute it and/or modify
9 :     * it under the terms of the GNU General Public License as published by
10 :     * the Free Software Foundation; either version 2 of the License, or
11 :     * (at your option) any later version.
12 : Isibaar 225 *
13 : edgomez 1054 * This program is distributed in the hope that it will be useful,
14 :     * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 :     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 :     * GNU General Public License for more details.
17 : Isibaar 225 *
18 : edgomez 1054 * You should have received a copy of the GNU General Public License
19 :     * along with this program; if not, write to the Free Software
20 :     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 :     *
22 : Skal 1392 * $Id: xvid_bench.c,v 1.9.2.11 2004-03-30 21:38:19 Skal Exp $
23 : edgomez 1054 *
24 :     ****************************************************************************/
25 : Isibaar 225
26 : edgomez 1054 /*****************************************************************************
27 : Isibaar 225 *
28 :     * 'Reference' output is at the end of file.
29 :     * Don't take the checksums and crc too seriouly, they aren't
30 : Isibaar 262 * bullet-proof (should plug some .md5 here)...
31 : Isibaar 225 *
32 :     * compiles with something like:
33 :     * gcc -o xvid_bench xvid_bench.c -I../src/ -lxvidcore -lm
34 :     *
35 : edgomez 1054 ****************************************************************************/
36 : Isibaar 225
37 :     #include <stdio.h>
38 :     #include <stdlib.h>
39 : edgomez 1053 #include <string.h> /* for memset */
40 : Isibaar 225 #include <assert.h>
41 :    
42 : suxen_drol 860 #ifndef WIN32
43 : edgomez 1053 #include <sys/time.h> /* for gettimeofday */
44 : suxen_drol 860 #else
45 :     #include <time.h>
46 :     #endif
47 :    
48 :    
49 : Isibaar 225 #include "xvid.h"
50 :    
51 : edgomez 851 // inner guts
52 : Isibaar 225 #include "dct/idct.h"
53 :     #include "dct/fdct.h"
54 :     #include "image/colorspace.h"
55 :     #include "image/interpolate8x8.h"
56 :     #include "utils/mem_transfer.h"
57 : edgomez 1176 #include "quant/quant.h"
58 : Isibaar 225 #include "motion/sad.h"
59 :     #include "utils/emms.h"
60 :     #include "utils/timer.h"
61 :     #include "quant/quant_matrix.c"
62 :     #include "bitstream/cbp.h"
63 :    
64 : Isibaar 262 #include <math.h>
65 : suxen_drol 860
66 :     #ifndef M_PI
67 :     #define M_PI 3.14159265358979323846
68 :     #endif
69 :    
70 : edgomez 1053 const int speed_ref = 100; /* on slow machines, decrease this value */
71 : Isibaar 225
72 :     /*********************************************************************
73 :     * misc
74 :     *********************************************************************/
75 :    
76 : edgomez 1060 /* returns time in micro-s*/
77 : Isibaar 225 double gettime_usec()
78 :     {
79 : suxen_drol 860 #ifndef WIN32
80 : edgomez 1060 struct timeval tv;
81 :     gettimeofday(&tv, 0);
82 :     return tv.tv_sec*1.0e6 + tv.tv_usec;
83 : suxen_drol 860 #else
84 :     clock_t clk;
85 :     clk = clock();
86 :     return clk * 1000000 / CLOCKS_PER_SEC;
87 :     #endif
88 : Isibaar 225 }
89 :    
90 : edgomez 1060 /* returns squared deviates (mean(v*v)-mean(v)^2) of a 8x8 block */
91 : Isibaar 225 double sqr_dev(uint8_t v[8*8])
92 :     {
93 : edgomez 1060 double sum=0.;
94 :     double sum2=0.;
95 :     int n;
96 :     for (n=0;n<8*8;n++)
97 :     {
98 :     sum += v[n];
99 :     sum2 += v[n]*v[n];
100 :     }
101 :     sum2 /= n;
102 :     sum /= n;
103 :     return sum2-sum*sum;
104 : Isibaar 225 }
105 :    
106 :     /*********************************************************************
107 :     * cpu init
108 :     *********************************************************************/
109 :    
110 :     typedef struct {
111 : edgomez 1060 const char *name;
112 :     unsigned int cpu;
113 : Isibaar 225 } CPU;
114 :    
115 :     CPU cpu_list[] =
116 :     { { "PLAINC", 0 }
117 : edgomez 1122 #ifdef ARCH_IS_IA32
118 : edgomez 1060 , { "MMX ", XVID_CPU_MMX }
119 :     , { "MMXEXT", XVID_CPU_MMXEXT | XVID_CPU_MMX }
120 :     , { "SSE2 ", XVID_CPU_SSE2 | XVID_CPU_MMX }
121 :     , { "3DNOW ", XVID_CPU_3DNOW }
122 : edgomez 1230 , { "3DNOWE", XVID_CPU_3DNOW | XVID_CPU_3DNOWEXT }
123 : edgomez 1122 #endif
124 : edgomez 1060 //, { "IA64 ", XVID_CPU_IA64 }
125 : edgomez 851 //, { "TSC ", XVID_CPU_TSC }
126 : edgomez 1060 , { 0, 0 } };
127 : Isibaar 225
128 : edgomez 1060 CPU cpu_short_list[] =
129 : Isibaar 225 { { "PLAINC", 0 }
130 : edgomez 1122 #ifdef ARCH_IS_IA32
131 : edgomez 1060 , { "MMX ", XVID_CPU_MMX }
132 : edgomez 851 //, { "MMXEXT", XVID_CPU_MMXEXT | XVID_CPU_MMX }
133 : edgomez 1122 #endif
134 : edgomez 1060 //, { "IA64 ", XVID_CPU_IA64 }
135 :     , { 0, 0 } };
136 : Isibaar 225
137 : edgomez 1060 CPU cpu_short_list2[] =
138 : Isibaar 225 { { "PLAINC", 0 }
139 : edgomez 1122 #ifdef ARCH_IS_IA32
140 : edgomez 1060 , { "MMX ", XVID_CPU_MMX }
141 :     , { "SSE2 ", XVID_CPU_SSE2 | XVID_CPU_MMX }
142 : edgomez 1122 #endif
143 : edgomez 1060 , { 0, 0 } };
144 : Isibaar 225
145 :    
146 :     int init_cpu(CPU *cpu)
147 :     {
148 : edgomez 1197 xvid_gbl_info_t xinfo;
149 : Isibaar 225
150 : edgomez 1197 /* Get the available CPU flags */
151 :     memset(&xinfo, 0, sizeof(xinfo));
152 :     xinfo.version = XVID_VERSION;
153 :     xvid_global(NULL, XVID_GBL_INFO, &xinfo, NULL);
154 :    
155 :     /* Are we trying to test a subset of the host CPU features */
156 :     if ((xinfo.cpu_flags & cpu->cpu) == cpu->cpu) {
157 :     int xerr;
158 :     xvid_gbl_init_t xinit;
159 :     memset(&xinit, 0, sizeof(xinit));
160 :     xinit.cpu_flags = cpu->cpu | XVID_CPU_FORCE;
161 :     xinit.version = XVID_VERSION;
162 :     xerr = xvid_global(NULL, XVID_GBL_INIT, &xinit, NULL);
163 :     if (xerr==XVID_ERR_FAIL) {
164 :     /* libxvidcore failed to init */
165 :     return 0;
166 :     }
167 :     } else {
168 :     /* The host CPU doesn't support some required feature for this test */
169 :     return(0);
170 : edgomez 1060 }
171 :     return 1;
172 : Isibaar 225 }
173 :    
174 : edgomez 1230 #define CRC32_REMAINDER 0xCBF43926
175 :     #define CRC32_INITIAL 0xffffffff
176 :    
177 :     #define DO1(c, crc) ((crc) = crc32tab[((unsigned int)((crc)>>24) ^ (*c++)) & 0xff] ^ ((crc) << 8))
178 :     #define DO2(c, crc) DO1(c, crc); DO1(c, crc);
179 :     #define DO4(c, crc) DO2(c, crc); DO2(c, crc);
180 :     #define DO8(c, crc) DO4(c, crc); DO4(c, crc);
181 :    
182 :     /******************************************************************************
183 :     * Precomputed AAL5 CRC32 lookup table
184 :     ******************************************************************************/
185 :    
186 :     static unsigned long crc32tab[256] = {
187 :    
188 :     0x00000000L, 0x04C11DB7L, 0x09823B6EL, 0x0D4326D9L,
189 :     0x130476DCL, 0x17C56B6BL, 0x1A864DB2L, 0x1E475005L,
190 :     0x2608EDB8L, 0x22C9F00FL, 0x2F8AD6D6L, 0x2B4BCB61L,
191 :     0x350C9B64L, 0x31CD86D3L, 0x3C8EA00AL, 0x384FBDBDL,
192 :     0x4C11DB70L, 0x48D0C6C7L, 0x4593E01EL, 0x4152FDA9L,
193 :     0x5F15ADACL, 0x5BD4B01BL, 0x569796C2L, 0x52568B75L,
194 :     0x6A1936C8L, 0x6ED82B7FL, 0x639B0DA6L, 0x675A1011L,
195 :     0x791D4014L, 0x7DDC5DA3L, 0x709F7B7AL, 0x745E66CDL,
196 :     0x9823B6E0L, 0x9CE2AB57L, 0x91A18D8EL, 0x95609039L,
197 :     0x8B27C03CL, 0x8FE6DD8BL, 0x82A5FB52L, 0x8664E6E5L,
198 :     0xBE2B5B58L, 0xBAEA46EFL, 0xB7A96036L, 0xB3687D81L,
199 :     0xAD2F2D84L, 0xA9EE3033L, 0xA4AD16EAL, 0xA06C0B5DL,
200 :     0xD4326D90L, 0xD0F37027L, 0xDDB056FEL, 0xD9714B49L,
201 :     0xC7361B4CL, 0xC3F706FBL, 0xCEB42022L, 0xCA753D95L,
202 :     0xF23A8028L, 0xF6FB9D9FL, 0xFBB8BB46L, 0xFF79A6F1L,
203 :     0xE13EF6F4L, 0xE5FFEB43L, 0xE8BCCD9AL, 0xEC7DD02DL,
204 :     0x34867077L, 0x30476DC0L, 0x3D044B19L, 0x39C556AEL,
205 :     0x278206ABL, 0x23431B1CL, 0x2E003DC5L, 0x2AC12072L,
206 :     0x128E9DCFL, 0x164F8078L, 0x1B0CA6A1L, 0x1FCDBB16L,
207 :     0x018AEB13L, 0x054BF6A4L, 0x0808D07DL, 0x0CC9CDCAL,
208 :     0x7897AB07L, 0x7C56B6B0L, 0x71159069L, 0x75D48DDEL,
209 :     0x6B93DDDBL, 0x6F52C06CL, 0x6211E6B5L, 0x66D0FB02L,
210 :     0x5E9F46BFL, 0x5A5E5B08L, 0x571D7DD1L, 0x53DC6066L,
211 :     0x4D9B3063L, 0x495A2DD4L, 0x44190B0DL, 0x40D816BAL,
212 :     0xACA5C697L, 0xA864DB20L, 0xA527FDF9L, 0xA1E6E04EL,
213 :     0xBFA1B04BL, 0xBB60ADFCL, 0xB6238B25L, 0xB2E29692L,
214 :     0x8AAD2B2FL, 0x8E6C3698L, 0x832F1041L, 0x87EE0DF6L,
215 :     0x99A95DF3L, 0x9D684044L, 0x902B669DL, 0x94EA7B2AL,
216 :     0xE0B41DE7L, 0xE4750050L, 0xE9362689L, 0xEDF73B3EL,
217 :     0xF3B06B3BL, 0xF771768CL, 0xFA325055L, 0xFEF34DE2L,
218 :     0xC6BCF05FL, 0xC27DEDE8L, 0xCF3ECB31L, 0xCBFFD686L,
219 :     0xD5B88683L, 0xD1799B34L, 0xDC3ABDEDL, 0xD8FBA05AL,
220 :     0x690CE0EEL, 0x6DCDFD59L, 0x608EDB80L, 0x644FC637L,
221 :     0x7A089632L, 0x7EC98B85L, 0x738AAD5CL, 0x774BB0EBL,
222 :     0x4F040D56L, 0x4BC510E1L, 0x46863638L, 0x42472B8FL,
223 :     0x5C007B8AL, 0x58C1663DL, 0x558240E4L, 0x51435D53L,
224 :     0x251D3B9EL, 0x21DC2629L, 0x2C9F00F0L, 0x285E1D47L,
225 :     0x36194D42L, 0x32D850F5L, 0x3F9B762CL, 0x3B5A6B9BL,
226 :     0x0315D626L, 0x07D4CB91L, 0x0A97ED48L, 0x0E56F0FFL,
227 :     0x1011A0FAL, 0x14D0BD4DL, 0x19939B94L, 0x1D528623L,
228 :     0xF12F560EL, 0xF5EE4BB9L, 0xF8AD6D60L, 0xFC6C70D7L,
229 :     0xE22B20D2L, 0xE6EA3D65L, 0xEBA91BBCL, 0xEF68060BL,
230 :     0xD727BBB6L, 0xD3E6A601L, 0xDEA580D8L, 0xDA649D6FL,
231 :     0xC423CD6AL, 0xC0E2D0DDL, 0xCDA1F604L, 0xC960EBB3L,
232 :     0xBD3E8D7EL, 0xB9FF90C9L, 0xB4BCB610L, 0xB07DABA7L,
233 :     0xAE3AFBA2L, 0xAAFBE615L, 0xA7B8C0CCL, 0xA379DD7BL,
234 :     0x9B3660C6L, 0x9FF77D71L, 0x92B45BA8L, 0x9675461FL,
235 :     0x8832161AL, 0x8CF30BADL, 0x81B02D74L, 0x857130C3L,
236 :     0x5D8A9099L, 0x594B8D2EL, 0x5408ABF7L, 0x50C9B640L,
237 :     0x4E8EE645L, 0x4A4FFBF2L, 0x470CDD2BL, 0x43CDC09CL,
238 :     0x7B827D21L, 0x7F436096L, 0x7200464FL, 0x76C15BF8L,
239 :     0x68860BFDL, 0x6C47164AL, 0x61043093L, 0x65C52D24L,
240 :     0x119B4BE9L, 0x155A565EL, 0x18197087L, 0x1CD86D30L,
241 :     0x029F3D35L, 0x065E2082L, 0x0B1D065BL, 0x0FDC1BECL,
242 :     0x3793A651L, 0x3352BBE6L, 0x3E119D3FL, 0x3AD08088L,
243 :     0x2497D08DL, 0x2056CD3AL, 0x2D15EBE3L, 0x29D4F654L,
244 :     0xC5A92679L, 0xC1683BCEL, 0xCC2B1D17L, 0xC8EA00A0L,
245 :     0xD6AD50A5L, 0xD26C4D12L, 0xDF2F6BCBL, 0xDBEE767CL,
246 :     0xE3A1CBC1L, 0xE760D676L, 0xEA23F0AFL, 0xEEE2ED18L,
247 :     0xF0A5BD1DL, 0xF464A0AAL, 0xF9278673L, 0xFDE69BC4L,
248 :     0x89B8FD09L, 0x8D79E0BEL, 0x803AC667L, 0x84FBDBD0L,
249 :     0x9ABC8BD5L, 0x9E7D9662L, 0x933EB0BBL, 0x97FFAD0CL,
250 :     0xAFB010B1L, 0xAB710D06L, 0xA6322BDFL, 0xA2F33668L,
251 :     0xBCB4666DL, 0xB8757BDAL, 0xB5365D03L, 0xB1F740B4L
252 :    
253 :     };
254 :    
255 :     uint32_t
256 :     calc_crc(uint8_t *mem, int len, uint32_t initial)
257 :     {
258 :    
259 :     register unsigned int crc;
260 :    
261 :     crc = initial;
262 :    
263 :     while( len >= 8) {
264 :     DO8(mem, crc);
265 :     len -= 8;
266 :     }
267 :    
268 :     while( len ) {
269 :     DO1(mem, crc);
270 :     len--;
271 :     }
272 :    
273 :     return(crc);
274 :    
275 :     }
276 :    
277 : Isibaar 225 /*********************************************************************
278 :     * test DCT
279 :     *********************************************************************/
280 :    
281 :     #define ABS(X) ((X)<0 ? -(X) : (X))
282 :    
283 :     void test_dct()
284 :     {
285 : edgomez 1060 const int nb_tests = 300*speed_ref;
286 :     int tst;
287 :     CPU *cpu;
288 :     int i;
289 : edgomez 1199 DECLARE_ALIGNED_MATRIX(iDst0, 8, 8, short, 16);
290 :     DECLARE_ALIGNED_MATRIX(iDst, 8, 8, short, 16);
291 :     DECLARE_ALIGNED_MATRIX(fDst, 8, 8, short, 16);
292 : edgomez 1060 double overhead;
293 : Isibaar 225
294 : edgomez 1060 printf( "\n ===== test fdct/idct =====\n" );
295 : Isibaar 225
296 : edgomez 1060 for(i=0; i<8*8; ++i) iDst0[i] = (i*7-i*i) & 0x7f;
297 :     overhead = gettime_usec();
298 :     for(tst=0; tst<nb_tests; ++tst)
299 :     {
300 :     for(i=0; i<8*8; ++i) fDst[i] = iDst0[i];
301 :     for(i=0; i<8*8; ++i) iDst[i] = fDst[i];
302 :     }
303 :     overhead = gettime_usec() - overhead;
304 : Isibaar 225
305 : edgomez 1060 for(cpu = cpu_list; cpu->name!=0; ++cpu)
306 :     {
307 :     double t, PSNR, MSE;
308 : Isibaar 225
309 : edgomez 1060 if (!init_cpu(cpu))
310 :     continue;
311 : Isibaar 225
312 : edgomez 1060 t = gettime_usec();
313 :     emms();
314 :     for(tst=0; tst<nb_tests; ++tst)
315 :     {
316 :     for(i=0; i<8*8; ++i) fDst[i] = iDst0[i];
317 :     fdct(fDst);
318 :     for(i=0; i<8*8; ++i) iDst[i] = fDst[i];
319 :     idct(iDst);
320 :     }
321 :     emms();
322 :     t = (gettime_usec() - t - overhead) / nb_tests;
323 :     MSE = 0.;
324 :     for(i=0; i<8*8; ++i) {
325 :     double delta = 1.0*(iDst[i] - iDst0[i]);
326 :     MSE += delta*delta;
327 :     }
328 :     PSNR = (MSE==0.) ? 1.e6 : -4.3429448*log( MSE/64. );
329 : edgomez 1230 printf( "%s - %.3f usec PSNR=%.3f MSE=%.3f %s\n",
330 :     cpu->name, t, PSNR, MSE,
331 :     (ABS(MSE)>=64)? "| ERROR" :"");
332 : edgomez 1060 }
333 : Isibaar 225 }
334 :    
335 :     /*********************************************************************
336 :     * test SAD
337 :     *********************************************************************/
338 :    
339 :     void test_sad()
340 :     {
341 : edgomez 1060 const int nb_tests = 2000*speed_ref;
342 :     int tst;
343 :     CPU *cpu;
344 :     int i;
345 : edgomez 1261 DECLARE_ALIGNED_MATRIX(Cur, 16, 16, uint8_t, 16);
346 :     DECLARE_ALIGNED_MATRIX(Ref1, 16, 16, uint8_t, 16);
347 :     DECLARE_ALIGNED_MATRIX(Ref2, 16, 16, uint8_t, 16);
348 : Isibaar 225
349 : edgomez 1060 printf( "\n ====== test SAD ======\n" );
350 :     for(i=0; i<16*16;++i) {
351 :     Cur[i] = (i/5) ^ 0x05;
352 :     Ref1[i] = (i + 0x0b) & 0xff;
353 :     Ref2[i] = i ^ 0x76;
354 :     }
355 : Isibaar 225
356 : edgomez 1060 for(cpu = cpu_list; cpu->name!=0; ++cpu)
357 :     {
358 :     double t;
359 :     uint32_t s;
360 :     if (!init_cpu(cpu))
361 :     continue;
362 : Isibaar 225
363 : edgomez 1060 t = gettime_usec();
364 :     emms();
365 :     for(tst=0; tst<nb_tests; ++tst) s = sad8(Cur, Ref1, 16);
366 :     emms();
367 :     t = (gettime_usec() - t) / nb_tests;
368 : edgomez 1230 printf("%s - sad8 %.3f usec sad=%d %s\n",
369 :     cpu->name, t, s,
370 :     (s!=3776)?"| ERROR": "" );
371 : Isibaar 225
372 : edgomez 1060 t = gettime_usec();
373 :     emms();
374 :     for(tst=0; tst<nb_tests; ++tst) s = sad16(Cur, Ref1, 16, -1);
375 :     emms();
376 :     t = (gettime_usec() - t) / nb_tests;
377 : edgomez 1230 printf("%s - sad16 %.3f usec sad=%d %s\n",
378 :     cpu->name, t, s,
379 :     (s!=27214)?"| ERROR": "" );
380 : Isibaar 225
381 : edgomez 1060 t = gettime_usec();
382 :     emms();
383 :     for(tst=0; tst<nb_tests; ++tst) s = sad16bi(Cur, Ref1, Ref2, 16);
384 :     emms();
385 :     t = (gettime_usec() - t) / nb_tests;
386 : edgomez 1230 printf( "%s - sad16bi %.3f usec sad=%d %s\n",
387 :     cpu->name, t, s,
388 :     (s!=26274)?"| ERROR": "" );
389 : Isibaar 225
390 : edgomez 1060 t = gettime_usec();
391 :     emms();
392 :     for(tst=0; tst<nb_tests; ++tst) s = dev16(Cur, 16);
393 :     emms();
394 :     t = (gettime_usec() - t) / nb_tests;
395 : edgomez 1230 printf( "%s - dev16 %.3f usec sad=%d %s\n",
396 :     cpu->name, t, s,
397 :     (s!=3344)?"| ERROR": "" );
398 : Isibaar 225
399 : edgomez 1060 printf( " --- \n" );
400 :     }
401 : Isibaar 225 }
402 :    
403 :     /*********************************************************************
404 :     * test interpolation
405 :     *********************************************************************/
406 :    
407 :     #define ENTER \
408 : edgomez 1060 for(i=0; i<16*8; ++i) Dst[i] = 0; \
409 :     t = gettime_usec(); \
410 :     emms();
411 : Isibaar 225
412 :     #define LEAVE \
413 : edgomez 1060 emms(); \
414 :     t = (gettime_usec() - t) / nb_tests; \
415 : edgomez 1230 iCrc = calc_crc((uint8_t*)Dst, sizeof(Dst), CRC32_INITIAL)
416 : Isibaar 225
417 :     #define TEST_MB(FUNC, R) \
418 : edgomez 1060 ENTER \
419 :     for(tst=0; tst<nb_tests; ++tst) (FUNC)(Dst, Src0, 16, (R)); \
420 :     LEAVE
421 : Isibaar 225
422 :     #define TEST_MB2(FUNC) \
423 : edgomez 1060 ENTER \
424 :     for(tst=0; tst<nb_tests; ++tst) (FUNC)(Dst, Src0, 16); \
425 :     LEAVE
426 : Isibaar 225
427 :    
428 :     void test_mb()
429 :     {
430 : edgomez 1060 const int nb_tests = 2000*speed_ref;
431 :     CPU *cpu;
432 :     const uint8_t Src0[16*9] = {
433 :     /* try to have every possible combinaison of rounding... */
434 : edgomez 1230 0, 0, 1, 0, 2, 0, 3, 0, 4 ,0,0,0, 0,0,0,0,
435 :     0, 1, 1, 1, 2, 1, 3, 1, 3 ,0,0,0, 0,0,0,0,
436 :     0, 2, 1, 2, 2, 2, 3, 2, 2 ,0,0,0, 0,0,0,0,
437 :     0, 3, 1, 3, 2, 3, 3, 3, 1 ,0,0,0, 0,0,0,0,
438 :     1, 3, 0, 2, 1, 0, 2, 3, 4 ,0,0,0, 0,0,0,0,
439 :     2, 2, 1, 2, 0, 1, 3, 5, 3 ,0,0,0, 0,0,0,0,
440 :     3, 1, 2, 3, 1, 2, 2, 6, 2 ,0,0,0, 0,0,0,0,
441 :     1, 0, 1, 3, 0, 3, 1, 6, 1 ,0,0,0, 0,0,0,0,
442 :     4, 3, 2, 1, 2, 3, 4, 0, 3 ,0,0,0, 0,0,0,0
443 : edgomez 1060 };
444 :     uint8_t Dst[16*8] = {0};
445 : Isibaar 225
446 : edgomez 1060 printf( "\n === test block motion ===\n" );
447 : Isibaar 225
448 : edgomez 1060 for(cpu = cpu_list; cpu->name!=0; ++cpu)
449 :     {
450 :     double t;
451 :     int tst, i, iCrc;
452 : Isibaar 225
453 : edgomez 1060 if (!init_cpu(cpu))
454 :     continue;
455 : Isibaar 225
456 : edgomez 1060 TEST_MB(interpolate8x8_halfpel_h, 0);
457 : edgomez 1230 printf("%s - interp- h-round0 %.3f usec crc32=0x%08x %s\n",
458 :     cpu->name, t, iCrc,
459 :     (iCrc!=0x115381ba)?"| ERROR": "" );
460 : Isibaar 225
461 : edgomez 1060 TEST_MB(interpolate8x8_halfpel_h, 1);
462 : edgomez 1230 printf("%s - round1 %.3f usec crc32=0x%08x %s\n",
463 :     cpu->name, t, iCrc,
464 :     (iCrc!=0x2b1f528f)?"| ERROR": "" );
465 : Isibaar 225
466 :    
467 : edgomez 1060 TEST_MB(interpolate8x8_halfpel_v, 0);
468 : edgomez 1230 printf("%s - interp- v-round0 %.3f usec crc32=0x%08x %s\n",
469 :     cpu->name, t, iCrc,
470 :     (iCrc!=0x423cdcc7)?"| ERROR": "" );
471 : Isibaar 225
472 : edgomez 1060 TEST_MB(interpolate8x8_halfpel_v, 1);
473 : edgomez 1230 printf("%s - round1 %.3f usec crc32=0x%08x %s\n",
474 :     cpu->name, t, iCrc,
475 :     (iCrc!=0x42202efe)?"| ERROR": "" );
476 : Isibaar 225
477 :    
478 : edgomez 1060 TEST_MB(interpolate8x8_halfpel_hv, 0);
479 : edgomez 1230 printf("%s - interp-hv-round0 %.3f usec crc32=0x%08x %s\n",
480 :     cpu->name, t, iCrc,
481 :     (iCrc!=0xd198d387)?"| ERROR": "" );
482 : Isibaar 225
483 : edgomez 1060 TEST_MB(interpolate8x8_halfpel_hv, 1);
484 : edgomez 1230 printf("%s - round1 %.3f usec crc32=0x%08x %s\n",
485 :     cpu->name, t, iCrc,
486 :     (iCrc!=0x9ecfd921)?"| ERROR": "" );
487 : Isibaar 225
488 : Isibaar 262
489 : edgomez 1060 /* this is a new function, as of 06.06.2002 */
490 : Isibaar 262 #if 0
491 : edgomez 1060 TEST_MB2(interpolate8x8_avrg);
492 : edgomez 1230 printf("%s - interpolate8x8_c %.3f usec crc32=0x%08x %s\n",
493 :     cpu->name, t, iCrc,
494 :     (iCrc!=8107)?"| ERROR": "" );
495 : Isibaar 262 #endif
496 :    
497 : edgomez 1060 printf( " --- \n" );
498 :     }
499 : Isibaar 225 }
500 :    
501 :     /*********************************************************************
502 :     * test transfer
503 :     *********************************************************************/
504 :    
505 :     #define INIT_TRANSFER \
506 : edgomez 1060 for(i=0; i<8*32; ++i) { \
507 :     Src8[i] = i; Src16[i] = i; \
508 :     Dst8[i] = 0; Dst16[i] = 0; \
509 :     Ref1[i] = i^0x27; \
510 :     Ref2[i] = i^0x51; \
511 :     }
512 : Isibaar 225
513 :     #define TEST_TRANSFER_BEGIN(DST) \
514 : edgomez 1060 INIT_TRANSFER \
515 :     overhead = -gettime_usec(); \
516 :     for(tst=0; tst<nb_tests; ++tst) { \
517 :     for(i=0; i<8*32; ++i) (DST)[i] = i^0x6a;\
518 :     } \
519 :     overhead += gettime_usec(); \
520 :     t = gettime_usec(); \
521 :     emms(); \
522 :     for(tst=0; tst<nb_tests; ++tst) { \
523 :     for(i=0; i<8*32; ++i) (DST)[i] = i^0x6a;
524 : Isibaar 225
525 :    
526 :     #define TEST_TRANSFER_END(DST) \
527 : edgomez 1060 } \
528 :     emms(); \
529 :     t = (gettime_usec()-t -overhead) / nb_tests;\
530 : edgomez 1230 s = calc_crc((uint8_t*)(DST), sizeof((DST)), CRC32_INITIAL)
531 : Isibaar 225
532 :     #define TEST_TRANSFER(FUNC, DST, SRC) \
533 : edgomez 1060 TEST_TRANSFER_BEGIN(DST); \
534 :     (FUNC)((DST), (SRC), 32); \
535 :     TEST_TRANSFER_END(DST)
536 : Isibaar 225
537 :    
538 :     #define TEST_TRANSFER2_BEGIN(DST, SRC) \
539 : edgomez 1060 INIT_TRANSFER \
540 :     overhead = -gettime_usec(); \
541 :     for(tst=0; tst<nb_tests; ++tst) { \
542 :     for(i=0; i<8*32; ++i) (DST)[i] = i^0x6a;\
543 :     for(i=0; i<8*32; ++i) (SRC)[i] = i^0x3e;\
544 :     } \
545 :     overhead += gettime_usec(); \
546 :     t = gettime_usec(); \
547 :     emms(); \
548 :     for(tst=0; tst<nb_tests; ++tst) { \
549 :     for(i=0; i<8*32; ++i) (DST)[i] = i^0x6a;\
550 :     for(i=0; i<8*32; ++i) (SRC)[i] = i^0x3e;
551 : Isibaar 225
552 :     #define TEST_TRANSFER2_END(DST) \
553 : edgomez 1060 } \
554 :     emms(); \
555 :     t = (gettime_usec()-t -overhead) / nb_tests;\
556 : edgomez 1230 s = calc_crc((uint8_t*)(DST), sizeof((DST)), CRC32_INITIAL)
557 : Isibaar 225
558 :     #define TEST_TRANSFER2(FUNC, DST, SRC, R1) \
559 : edgomez 1060 TEST_TRANSFER2_BEGIN(DST,SRC); \
560 :     (FUNC)((DST), (SRC), (R1), 32); \
561 :     TEST_TRANSFER2_END(DST)
562 : Isibaar 225
563 :     #define TEST_TRANSFER3(FUNC, DST, SRC, R1, R2)\
564 : edgomez 1060 TEST_TRANSFER_BEGIN(DST); \
565 :     (FUNC)((DST), (SRC), (R1), (R2), 32); \
566 :     TEST_TRANSFER_END(DST)
567 : Isibaar 225
568 :     void test_transfer()
569 :     {
570 : edgomez 1060 const int nb_tests = 4000*speed_ref;
571 :     int i;
572 :     CPU *cpu;
573 :     uint8_t Src8[8*32], Dst8[8*32], Ref1[8*32], Ref2[8*32];
574 :     int16_t Src16[8*32], Dst16[8*32];
575 : Isibaar 225
576 : edgomez 1060 printf( "\n === test transfer ===\n" );
577 : Isibaar 225
578 : edgomez 1176 for(cpu = cpu_list; cpu->name!=0; ++cpu)
579 : edgomez 1060 {
580 :     double t, overhead;
581 :     int tst, s;
582 : Isibaar 225
583 : edgomez 1060 if (!init_cpu(cpu))
584 :     continue;
585 : Isibaar 225
586 : edgomez 1060 TEST_TRANSFER(transfer_8to16copy, Dst16, Src8);
587 : edgomez 1230 printf("%s - 8to16 %.3f usec crc32=0x%08x %s\n",
588 :     cpu->name, t, s,
589 :     (s!=0x115814bb)?"| ERROR": "");
590 : Isibaar 225
591 : edgomez 1060 TEST_TRANSFER(transfer_16to8copy, Dst8, Src16);
592 : edgomez 1230 printf( "%s - 16to8 %.3f usec crc32=0x%08x %s\n",
593 :     cpu->name, t, s,
594 :     (s!=0xee7ccbb4)?"| ERROR": "");
595 : Isibaar 225
596 : edgomez 1060 TEST_TRANSFER(transfer8x8_copy, Dst8, Src8);
597 : edgomez 1230 printf("%s - 8to8 %.3f usec crc32=0x%08x %s\n",
598 :     cpu->name, t, s,
599 :     (s!=0xd37b3295)?"| ERROR": "");
600 : Isibaar 225
601 : edgomez 1060 TEST_TRANSFER(transfer_16to8add, Dst8, Src16);
602 : edgomez 1230 printf("%s - 16to8add %.3f usec crc32=0x%08x %s\n",
603 :     cpu->name, t, s,
604 :     (s!=0xdd817bf4)?"| ERROR": "" );
605 : Isibaar 225
606 : edgomez 1060 TEST_TRANSFER2(transfer_8to16sub, Dst16, Src8, Ref1);
607 : edgomez 1230 {
608 :     int s1, s2;
609 :     s1 = calc_crc((uint8_t*)Dst16, sizeof(Dst16), CRC32_INITIAL);
610 :     s2 = calc_crc((uint8_t*)Src8, sizeof(Src8), CRC32_INITIAL);
611 :     printf("%s - 8to16sub %.3f usec crc32(1)=0x%08x crc32(2)=0x%08x %s %s\n",
612 :     cpu->name, t, s1, s2,
613 :     (s1!=0xa1e07163)?"| ERROR1": "",
614 :     (s2!=0xd86c5d23)?"| ERROR2": "" );
615 :     }
616 : edgomez 1220
617 : edgomez 1060 TEST_TRANSFER3(transfer_8to16sub2, Dst16, Src8, Ref1, Ref2);
618 : edgomez 1230 printf("%s - 8to16sub2 %.3f usec crc32=0x%08x %s\n",
619 :     cpu->name, t, s,
620 :     (s!=0x99b6c4c7)?"| ERROR": "" );
621 : edgomez 1220
622 : edgomez 1060 printf( " --- \n" );
623 :     }
624 : Isibaar 225 }
625 :    
626 :     /*********************************************************************
627 :     * test quantization
628 :     *********************************************************************/
629 :    
630 : Isibaar 262 #define TEST_QUANT(FUNC, DST, SRC) \
631 : edgomez 1060 t = gettime_usec(); \
632 : edgomez 1230 for(s=CRC32_INITIAL,qm=1; qm<=255; ++qm) { \
633 : edgomez 1060 for(i=0; i<8*8; ++i) Quant[i] = qm; \
634 : edgomez 1230 set_inter_matrix( mpeg_quant_matrices, Quant ); \
635 : edgomez 1060 emms(); \
636 :     for(q=1; q<=max_Q; ++q) { \
637 :     for(tst=0; tst<nb_tests; ++tst) \
638 : edgomez 1230 (FUNC)((DST), (SRC), q, mpeg_quant_matrices); \
639 : edgomez 1261 s = calc_crc((uint8_t*)(DST), 64*sizeof(int16_t), s); \
640 : edgomez 1060 } \
641 :     emms(); \
642 :     } \
643 : edgomez 1230 t = (gettime_usec()-t-overhead)/nb_tests/qm
644 : Isibaar 225
645 : Isibaar 262 #define TEST_QUANT2(FUNC, DST, SRC) \
646 : edgomez 1060 t = gettime_usec(); \
647 : edgomez 1230 for(s=CRC32_INITIAL,qm=1; qm<=255; ++qm) { \
648 : edgomez 1060 for(i=0; i<8*8; ++i) Quant[i] = qm; \
649 : edgomez 1230 set_intra_matrix( mpeg_quant_matrices, Quant ); \
650 : edgomez 1060 emms(); \
651 :     for(q=1; q<=max_Q; ++q) { \
652 :     for(tst=0; tst<nb_tests; ++tst) \
653 : edgomez 1230 (FUNC)((DST), (SRC), q, q, mpeg_quant_matrices); \
654 : edgomez 1261 s = calc_crc((uint8_t*)(DST), 64*sizeof(int16_t), s); \
655 : edgomez 1060 } \
656 :     emms(); \
657 :     } \
658 : edgomez 1230 t = (gettime_usec()-t-overhead)/nb_tests/qm
659 : Isibaar 225
660 : Skal 1392 #define TEST_INTRA(REFFUNC, NEWFUNC, RANGE) \
661 :     { int i,q,s;\
662 :     DECLARE_ALIGNED_MATRIX(Src, 8, 8, int16_t, 16); \
663 :     DECLARE_ALIGNED_MATRIX(Dst, 8, 8, int16_t, 16); \
664 :     DECLARE_ALIGNED_MATRIX(Dst2,8, 8, int16_t, 16); \
665 :     for(q=1;q<=max_Q;q++) \
666 :     for(s=-RANGE;s<RANGE;s++) { \
667 :     for(i=0;i<64;i++) Src[i]=s; \
668 :     (REFFUNC)((Dst),(Src),q,q,mpeg_quant_matrices); \
669 :     (NEWFUNC)((Dst2),(Src),q,q,mpeg_quant_matrices); \
670 :     for(i=0;i<64;i++) \
671 :     if(Dst[i]!=Dst2[i]) printf("ERROR : " #NEWFUNC " i%d quant:%d input:%d C_result:%d ASM_result:%d\n",i,q,s,Dst[i],Dst2[i]); \
672 :     } \
673 :     }
674 :    
675 :     #define TEST_INTER(REFFUNC, NEWFUNC, RANGE) \
676 :     { int i,q,s; \
677 :     DECLARE_ALIGNED_MATRIX(Src, 8, 8, int16_t, 16); \
678 :     DECLARE_ALIGNED_MATRIX(Dst, 8, 8, int16_t, 16); \
679 :     DECLARE_ALIGNED_MATRIX(Dst2,8, 8, int16_t, 16); \
680 :     for(q=1;q<=max_Q;q++) \
681 :     for(s=-RANGE;s<RANGE;s++) { \
682 :     for(i=0;i<64;i++) Src[i]=s; \
683 :     (REFFUNC)((Dst),(Src),q,mpeg_quant_matrices); \
684 :     (NEWFUNC)((Dst2),(Src),q,mpeg_quant_matrices); \
685 :     emms(); \
686 :     for(i=0;i<64;i++) \
687 :     if(Dst[i]!=Dst2[i]) printf("ERROR : " #NEWFUNC " i%d quant:%d input:%d C_result:%d ASM_result:%d\n",i,q,s,Dst[i],Dst2[i]); \
688 :     } \
689 :     }
690 :    
691 : Isibaar 225 void test_quant()
692 :     {
693 : edgomez 1060 const int nb_tests = 1*speed_ref;
694 :     const int max_Q = 31;
695 : edgomez 1261 DECLARE_ALIGNED_MATRIX(mpeg_quant_matrices, 8, 64, uint16_t, 16);
696 : edgomez 1230
697 : edgomez 1060 int i, qm;
698 :     CPU *cpu;
699 : edgomez 1261 DECLARE_ALIGNED_MATRIX(Src, 8, 8, int16_t, 16);
700 :     DECLARE_ALIGNED_MATRIX(Dst, 8, 8, int16_t, 16);
701 : Skal 1392 DECLARE_ALIGNED_MATRIX(Dst2,8, 8, int16_t, 16);
702 : edgomez 1060 uint8_t Quant[8*8];
703 : Isibaar 225
704 : Skal 1392
705 :    
706 : edgomez 1060 printf( "\n ===== test quant =====\n" );
707 : Isibaar 225
708 : edgomez 1060 /* we deliberately enfringe the norm's specified range [-127,127], */
709 :     /* to test the robustness of the iquant module */
710 :     for(i=0; i<64; ++i) {
711 :     Src[i] = 1 + (i-32) * (i&6);
712 :     Dst[i] = 0;
713 :     }
714 : Isibaar 225
715 : edgomez 1176 for(cpu = cpu_list; cpu->name!=0; ++cpu)
716 : edgomez 1060 {
717 :     double t, overhead;
718 :     int tst, q;
719 :     uint32_t s;
720 : Isibaar 225
721 : edgomez 1060 if (!init_cpu(cpu))
722 : Skal 1392 continue;
723 : Isibaar 225
724 : Skal 1392 // exhaustive tests to compare against the (ref) C-version
725 :     TEST_INTRA(quant_h263_intra_c, quant_h263_intra, 2048);
726 :     TEST_INTRA(dequant_h263_intra_c, dequant_h263_intra , 512 );
727 :     TEST_INTER(quant_h263_inter_c, quant_h263_inter , 2048);
728 :     TEST_INTER(dequant_h263_inter_c, dequant_h263_inter , 512 );
729 :    
730 : edgomez 1060 overhead = -gettime_usec();
731 :     for(s=0,qm=1; qm<=255; ++qm) {
732 :     for(i=0; i<8*8; ++i) Quant[i] = qm;
733 : edgomez 1230 set_inter_matrix(mpeg_quant_matrices, Quant );
734 : edgomez 1060 for(q=1; q<=max_Q; ++q)
735 :     for(i=0; i<64; ++i) s+=Dst[i]^i^qm;
736 :     }
737 :     overhead += gettime_usec();
738 : Isibaar 225
739 : edgomez 1176 TEST_QUANT2(quant_mpeg_intra, Dst, Src);
740 : edgomez 1230 printf("%s - quant_mpeg_intra %.3f usec crc32=0x%08x %s\n",
741 :     cpu->name, t, s,
742 :     (s!=0xfd6a21a4)? "| ERROR": "");
743 : Isibaar 225
744 : edgomez 1176 TEST_QUANT(quant_mpeg_inter, Dst, Src);
745 : edgomez 1230 printf("%s - quant_mpeg_inter %.3f usec crc32=0x%08x %s\n",
746 :     cpu->name, t, s,
747 :     (s!=0xf6de7757)?"| ERROR": "");
748 :    
749 : edgomez 1176 TEST_QUANT2(dequant_mpeg_intra, Dst, Src);
750 : edgomez 1230 printf("%s - dequant_mpeg_intra %.3f usec crc32=0x%08x %s\n",
751 :     cpu->name, t, s,
752 :     (s!=0x2def7bc7)?"| ERROR": "");
753 : Isibaar 225
754 : edgomez 1176 TEST_QUANT(dequant_mpeg_inter, Dst, Src);
755 : edgomez 1230 printf("%s - dequant_mpeg_inter %.3f usec crc32=0x%08x %s\n",
756 :     cpu->name, t, s,
757 :     (s!=0xd878c722)?"| ERROR": "");
758 :    
759 : edgomez 1176 TEST_QUANT2(quant_h263_intra, Dst, Src);
760 : edgomez 1230 printf("%s - quant_h263_intra %.3f usec crc32=0x%08x %s\n",
761 :     cpu->name, t, s,
762 :     (s!=0x2eba9d43)?"| ERROR": "");
763 : Isibaar 225
764 : edgomez 1176 TEST_QUANT(quant_h263_inter, Dst, Src);
765 : edgomez 1230 printf("%s - quant_h263_inter %.3f usec crc32=0x%08x %s\n",
766 :     cpu->name, t, s,
767 :     (s!=0xbd315a7e)?"| ERROR": "");
768 :    
769 : edgomez 1176 TEST_QUANT2(dequant_h263_intra, Dst, Src);
770 : edgomez 1230 printf("%s - dequant_h263_intra %.3f usec crc32=0x%08x %s\n",
771 :     cpu->name, t, s,
772 :     (s!=0x9841212a)?"| ERROR": "");
773 : Isibaar 225
774 : edgomez 1176 TEST_QUANT(dequant_h263_inter, Dst, Src);
775 : edgomez 1230 printf("%s - dequant_h263_inter %.3f usec crc32=0x%08x %s\n",
776 :     cpu->name, t, s,
777 :     (s!=0xe7df8fba)?"| ERROR": "");
778 :    
779 : edgomez 1060 printf( " --- \n" );
780 :     }
781 : Isibaar 225 }
782 :    
783 :     /*********************************************************************
784 :     * test non-zero AC counting
785 :     *********************************************************************/
786 :    
787 : Skal 1392 #define TEST_CBP(FUNC, SRC) \
788 : edgomez 1060 t = gettime_usec(); \
789 :     emms(); \
790 :     for(tst=0; tst<nb_tests; ++tst) { \
791 :     cbp = (FUNC)((SRC)); \
792 :     } \
793 :     emms(); \
794 :     t = (gettime_usec()-t ) / nb_tests;
795 : Isibaar 225
796 :     void test_cbp()
797 :     {
798 : edgomez 1060 const int nb_tests = 10000*speed_ref;
799 :     int i;
800 :     CPU *cpu;
801 : edgomez 1261 DECLARE_ALIGNED_MATRIX(Src1, 6, 64, int16_t, 16);
802 :     DECLARE_ALIGNED_MATRIX(Src2, 6, 64, int16_t, 16);
803 :     DECLARE_ALIGNED_MATRIX(Src3, 6, 64, int16_t, 16);
804 :     DECLARE_ALIGNED_MATRIX(Src4, 6, 64, int16_t, 16);
805 : Isibaar 225
806 : edgomez 1060 printf( "\n ===== test cbp =====\n" );
807 : Isibaar 225
808 : edgomez 1060 for(i=0; i<6*64; ++i) {
809 :     Src1[i] = (i*i*3/8192)&(i/64)&1; /* 'random' */
810 :     Src2[i] = (i<3*64); /* half-full */
811 :     Src3[i] = ((i+32)>3*64);
812 :     Src4[i] = (i==(3*64+2) || i==(5*64+9));
813 :     }
814 : Isibaar 225
815 : edgomez 1176 for(cpu = cpu_list; cpu->name!=0; ++cpu)
816 : edgomez 1060 {
817 :     double t;
818 :     int tst, cbp;
819 : Isibaar 225
820 : edgomez 1060 if (!init_cpu(cpu))
821 :     continue;
822 :    
823 :     TEST_CBP(calc_cbp, Src1);
824 : edgomez 1230 printf("%s - calc_cbp#1 %.3f usec cbp=0x%02x\n",
825 :     cpu->name, t, cbp, (cbp!=0x15)?"| ERROR": "");
826 : edgomez 1060 TEST_CBP(calc_cbp, Src2);
827 : edgomez 1230 printf("%s - calc_cbp#2 %.3f usec cbp=0x%02x\n",
828 :     cpu->name, t, cbp, (cbp!=0x38)?"| ERROR": "");
829 : edgomez 1060 TEST_CBP(calc_cbp, Src3);
830 : edgomez 1230 printf("%s - calc_cbp#3 %.3f usec cbp=0x%02x\n",
831 :     cpu->name, t, cbp, (cbp!=0x0f)?"| ERROR": "" );
832 : edgomez 1060 TEST_CBP(calc_cbp, Src4);
833 : edgomez 1230 printf("%s - calc_cbp#4 %.3f usec cbp=0x%02x\n",
834 :     cpu->name, t, cbp, (cbp!=0x05)?"| ERROR": "" );
835 : edgomez 1060 printf( " --- \n" );
836 :     }
837 : Isibaar 225 }
838 :    
839 :     /*********************************************************************
840 : Isibaar 262 * fdct/idct IEEE1180 compliance
841 :     *********************************************************************/
842 :    
843 :     typedef struct {
844 : edgomez 1060 long Errors[64];
845 :     long Sqr_Errors[64];
846 :     long Max_Errors[64];
847 :     long Nb;
848 : Isibaar 262 } STATS_8x8;
849 :    
850 :     void init_stats(STATS_8x8 *S)
851 :     {
852 : edgomez 1060 int i;
853 :     for(i=0; i<64; ++i) {
854 :     S->Errors[i] = 0;
855 :     S->Sqr_Errors[i] = 0;
856 :     S->Max_Errors[i] = 0;
857 :     }
858 :     S->Nb = 0;
859 : Isibaar 262 }
860 :    
861 :     void store_stats(STATS_8x8 *S, short Blk[64], short Ref[64])
862 :     {
863 : edgomez 1060 int i;
864 :     for(i=0; i<64; ++i)
865 :     {
866 :     short Err = Blk[i] - Ref[i];
867 :     S->Errors[i] += Err;
868 :     S->Sqr_Errors[i] += Err * Err;
869 :     if (Err<0) Err = -Err;
870 :     if (S->Max_Errors[i]<Err)
871 :     S->Max_Errors[i] = Err;
872 :     }
873 :     S->Nb++;
874 : Isibaar 262 }
875 :    
876 :     void print_stats(STATS_8x8 *S)
877 :     {
878 : edgomez 1060 int i;
879 :     double Norm;
880 : Isibaar 262
881 : edgomez 1060 assert(S->Nb>0);
882 :     Norm = 1. / (double)S->Nb;
883 :     printf("\n== Max absolute values of errors ==\n");
884 :     for(i=0; i<64; i++) {
885 :     printf(" %4ld", S->Max_Errors[i]);
886 :     if ((i&7)==7) printf("\n");
887 :     }
888 : Isibaar 262
889 : edgomez 1060 printf("\n== Mean square errors ==\n");
890 :     for(i=0; i<64; i++)
891 :     {
892 :     double Err = Norm * (double)S->Sqr_Errors[i];
893 :     printf(" %.3f", Err);
894 :     if ((i&7)==7) printf("\n");
895 :     }
896 : Isibaar 262
897 : edgomez 1060 printf("\n== Mean errors ==\n");
898 :     for(i=0; i<64; i++)
899 :     {
900 :     double Err = Norm * (double)S->Errors[i];
901 :     printf(" %.3f", Err);
902 :     if ((i&7)==7) printf("\n");
903 :     }
904 :     printf("\n");
905 : Isibaar 262 }
906 :    
907 :     static const char *CHECK(double v, double l) {
908 : edgomez 1060 if (fabs(v)<=l) return "ok";
909 :     else return "FAIL!";
910 : Isibaar 262 }
911 :    
912 :     void report_stats(STATS_8x8 *S, const double *Limits)
913 :     {
914 : edgomez 1060 int i;
915 :     double Norm, PE, PMSE, OMSE, PME, OME;
916 : Isibaar 262
917 : edgomez 1060 assert(S->Nb>0);
918 :     Norm = 1. / (double)S->Nb;
919 :     PE = 0.;
920 :     for(i=0; i<64; i++) {
921 :     if (PE<S->Max_Errors[i])
922 :     PE = S->Max_Errors[i];
923 :     }
924 : Isibaar 262
925 : edgomez 1060 PMSE = 0.;
926 :     OMSE = 0.;
927 :     for(i=0; i<64; i++)
928 :     {
929 :     double Err = Norm * (double)S->Sqr_Errors[i];
930 :     OMSE += Err;
931 :     if (PMSE < Err) PMSE = Err;
932 :     }
933 :     OMSE /= 64.;
934 : Isibaar 262
935 : edgomez 1060 PME = 0.;
936 :     OME = 0.;
937 :     for(i=0; i<64; i++)
938 :     {
939 :     double Err = Norm * (double)S->Errors[i];
940 :     OME += Err;
941 :     Err = fabs(Err);
942 :     if (PME < Err) PME = Err;
943 :     }
944 :     OME /= 64.;
945 : Isibaar 262
946 : edgomez 1060 printf( "Peak error: %4.4f\n", PE );
947 :     printf( "Peak MSE: %4.4f\n", PMSE );
948 :     printf( "Overall MSE: %4.4f\n", OMSE );
949 :     printf( "Peak ME: %4.4f\n", PME );
950 :     printf( "Overall ME: %4.4f\n", OME );
951 :    
952 :     if (Limits!=0)
953 :     {
954 :     printf( "[PE<=%.4f %s] ", Limits[0], CHECK(PE, Limits[0]) );
955 :     printf( "\n" );
956 :     printf( "[PMSE<=%.4f %s]", Limits[1], CHECK(PMSE, Limits[1]) );
957 :     printf( "[OMSE<=%.4f %s]", Limits[2], CHECK(OMSE, Limits[2]) );
958 :     printf( "\n" );
959 :     printf( "[PME<=%.4f %s] ", Limits[3], CHECK(PME , Limits[3]) );
960 :     printf( "[OME<=%.4f %s] ", Limits[4], CHECK(OME , Limits[4]) );
961 :     printf( "\n" );
962 :     }
963 : Isibaar 262 }
964 :    
965 : edgomez 1053 ///* ////////////////////////////////////////////////////// */
966 : Isibaar 262 /* Pseudo-random generator specified by IEEE 1180 */
967 :    
968 :     static long ieee_seed = 1;
969 :     static void ieee_reseed(long s) {
970 : edgomez 1060 ieee_seed = s;
971 : Isibaar 262 }
972 :     static long ieee_rand(int Min, int Max)
973 :     {
974 : edgomez 1060 static double z = (double) 0x7fffffff;
975 : Isibaar 262
976 : edgomez 1060 long i,j;
977 :     double x;
978 : Isibaar 262
979 : edgomez 1060 ieee_seed = (ieee_seed * 1103515245) + 12345;
980 :     i = ieee_seed & 0x7ffffffe;
981 :     x = ((double) i) / z;
982 :     x *= (Max-Min+1);
983 :     j = (long)x;
984 :     j = j + Min;
985 :     assert(j>=Min && j<=Max);
986 :     return (short)j;
987 : Isibaar 262 }
988 :    
989 :     #define CLAMP(x, M) (x) = ((x)<-(M)) ? (-(M)) : ((x)>=(M) ? ((M)-1) : (x))
990 :    
991 :     static double Cos[8][8];
992 :     static void init_ref_dct()
993 :     {
994 : edgomez 1060 int i, j;
995 :     for(i=0; i<8; i++)
996 :     {
997 :     double scale = (i == 0) ? sqrt(0.125) : 0.5;
998 :     for (j=0; j<8; j++)
999 :     Cos[i][j] = scale*cos( (M_PI/8.0)*i*(j + 0.5) );
1000 :     }
1001 : Isibaar 262 }
1002 :    
1003 :     void ref_idct(short *M)
1004 :     {
1005 : edgomez 1060 int i, j, k;
1006 :     double Tmp[8][8];
1007 : Isibaar 262
1008 : edgomez 1060 for(i=0; i<8; i++) {
1009 :     for(j=0; j<8; j++)
1010 :     {
1011 :     double Sum = 0.0;
1012 :     for (k=0; k<8; k++) Sum += Cos[k][j]*M[8*i+k];
1013 :     Tmp[i][j] = Sum;
1014 :     }
1015 :     }
1016 :     for(i=0; i<8; i++) {
1017 :     for(j=0; j<8; j++) {
1018 :     double Sum = 0.0;
1019 :     for (k=0; k<8; k++) Sum += Cos[k][i]*Tmp[k][j];
1020 :     M[8*i+j] = (short)floor(Sum + .5);
1021 :     }
1022 :     }
1023 : Isibaar 262 }
1024 :    
1025 :     void ref_fdct(short *M)
1026 :     {
1027 : edgomez 1060 int i, j, k;
1028 :     double Tmp[8][8];
1029 : Isibaar 262
1030 : edgomez 1060 for(i=0; i<8; i++) {
1031 :     for(j=0; j<8; j++)
1032 :     {
1033 :     double Sum = 0.0;
1034 :     for (k=0; k<8; k++) Sum += Cos[j][k]*M[8*i+k];
1035 :     Tmp[i][j] = Sum;
1036 :     }
1037 :     }
1038 :     for(i=0; i<8; i++) {
1039 :     for(j=0; j<8; j++) {
1040 :     double Sum = 0.0;
1041 :     for (k=0; k<8; k++) Sum += Cos[i][k]*Tmp[k][j];
1042 :     M[8*i+j] = (short)floor(Sum + 0.5);
1043 :     }
1044 :     }
1045 : Isibaar 262 }
1046 :    
1047 :     void test_IEEE1180_compliance(int Min, int Max, int Sign)
1048 :     {
1049 : edgomez 1060 static const double ILimits[5] = { 1., 0.06, 0.02, 0.015, 0.0015 };
1050 :     int Loops = 10000;
1051 :     int i, m, n;
1052 : edgomez 1199 DECLARE_ALIGNED_MATRIX(Blk0, 8, 8, short, 16); /* reference */
1053 :     DECLARE_ALIGNED_MATRIX(Blk, 8, 8, short, 16);
1054 :     DECLARE_ALIGNED_MATRIX(iBlk, 8, 8, short, 16);
1055 :     DECLARE_ALIGNED_MATRIX(Ref_FDCT, 8, 8, short, 16);
1056 :     DECLARE_ALIGNED_MATRIX(Ref_IDCT, 8, 8, short, 16);
1057 : Isibaar 262
1058 : edgomez 1060 STATS_8x8 FStats; /* forward dct stats */
1059 :     STATS_8x8 IStats; /* inverse dct stats */
1060 : Isibaar 262
1061 : edgomez 1060 CPU *cpu;
1062 : Isibaar 262
1063 : edgomez 1060 init_ref_dct();
1064 : Isibaar 262
1065 : edgomez 1060 for(cpu = cpu_list; cpu->name!=0; ++cpu)
1066 :     {
1067 :     if (!init_cpu(cpu))
1068 :     continue;
1069 : Isibaar 262
1070 : edgomez 1060 printf( "\n===== IEEE test for %s ==== (Min=%d Max=%d Sign=%d Loops=%d)\n",
1071 :     cpu->name, Min, Max, Sign, Loops);
1072 : Isibaar 262
1073 : edgomez 1060 init_stats(&IStats);
1074 :     init_stats(&FStats);
1075 : Isibaar 262
1076 : edgomez 1060 ieee_reseed(1);
1077 :     for(n=0; n<Loops; ++n)
1078 :     {
1079 :     for(i=0; i<64; ++i)
1080 :     Blk0[i] = (short)ieee_rand(Min,Max) * Sign;
1081 : Isibaar 262
1082 : edgomez 1060 /* hmm, I'm not quite sure this is exactly */
1083 :     /* the tests described in the norm. check... */
1084 : Isibaar 262
1085 : edgomez 1060 memcpy(Ref_FDCT, Blk0, 64*sizeof(short));
1086 :     ref_fdct(Ref_FDCT);
1087 :     for(i=0; i<64; i++) CLAMP( Ref_FDCT[i], 2048 );
1088 : Isibaar 262
1089 : edgomez 1060 memcpy(Blk, Blk0, 64*sizeof(short));
1090 :     emms(); fdct(Blk); emms();
1091 :     for(i=0; i<64; i++) CLAMP( Blk[i], 2048 );
1092 : Isibaar 262
1093 : edgomez 1060 store_stats(&FStats, Blk, Ref_FDCT);
1094 : Isibaar 262
1095 :    
1096 : edgomez 1060 memcpy(Ref_IDCT, Ref_FDCT, 64*sizeof(short));
1097 :     ref_idct(Ref_IDCT);
1098 :     for (i=0; i<64; i++) CLAMP( Ref_IDCT[i], 256 );
1099 : Isibaar 262
1100 : edgomez 1060 memcpy(iBlk, Ref_FDCT, 64*sizeof(short));
1101 :     emms(); idct(iBlk); emms();
1102 :     for(i=0; i<64; i++) CLAMP( iBlk[i], 256 );
1103 : Isibaar 262
1104 : edgomez 1060 store_stats(&IStats, iBlk, Ref_IDCT);
1105 :     }
1106 : Isibaar 262
1107 :    
1108 : edgomez 1060 printf( "\n -- FDCT report --\n" );
1109 : edgomez 851 // print_stats(&FStats);
1110 : edgomez 1060 report_stats(&FStats, 0); /* so far I know, IEEE1180 says nothing for fdct */
1111 : Isibaar 262
1112 : edgomez 1060 for(i=0; i<64; i++) Blk[i] = 0;
1113 :     emms(); fdct(Blk); emms();
1114 :     for(m=i=0; i<64; i++) if (Blk[i]!=0) m++;
1115 :     printf( "FDCT(0) == 0 ? %s\n", (m!=0) ? "NOPE!" : "yup." );
1116 : Isibaar 262
1117 : edgomez 1060 printf( "\n -- IDCT report --\n" );
1118 : edgomez 851 // print_stats(&IStats);
1119 : edgomez 1060 report_stats(&IStats, ILimits);
1120 : Isibaar 262
1121 :    
1122 : edgomez 1060 for(i=0; i<64; i++) Blk[i] = 0;
1123 :     emms(); idct(Blk); emms();
1124 :     for(m=i=0; i<64; i++) if (Blk[i]!=0) m++;
1125 :     printf( "IDCT(0) == 0 ? %s\n", (m!=0) ? "NOPE!" : "yup." );
1126 :     }
1127 : Isibaar 262 }
1128 :    
1129 :    
1130 :     void test_dct_saturation(int Min, int Max)
1131 :     {
1132 : edgomez 1060 /* test behaviour on input range fringe */
1133 : Isibaar 262
1134 : edgomez 1060 int i, n, p;
1135 :     CPU *cpu;
1136 : edgomez 1053 // const short IDCT_MAX = 2047; /* 12bits input */
1137 : edgomez 851 // const short IDCT_MIN = -2048;
1138 : edgomez 1053 // const short IDCT_OUT = 256; /* 9bits ouput */
1139 : edgomez 1060 const int Partitions = 4;
1140 :     const int Loops = 10000 / Partitions;
1141 : Isibaar 262
1142 : edgomez 1060 init_ref_dct();
1143 : Isibaar 262
1144 : edgomez 1060 for(cpu = cpu_list; cpu->name!=0; ++cpu)
1145 :     {
1146 :     short Blk0[64], Blk[64];
1147 :     STATS_8x8 Stats;
1148 : Isibaar 262
1149 : edgomez 1060 if (!init_cpu(cpu))
1150 :     continue;
1151 : Isibaar 262
1152 : edgomez 1060 printf( "\n===== IEEE test for %s Min=%d Max=%d =====\n",
1153 :     cpu->name, Min, Max );
1154 : Isibaar 262
1155 : edgomez 1060 /* FDCT tests // */
1156 : Isibaar 262
1157 : edgomez 1060 init_stats(&Stats);
1158 : Isibaar 262
1159 : edgomez 1060 /* test each computation channels separately */
1160 :     for(i=0; i<64; i++) Blk[i] = Blk0[i] = ((i/8)==(i%8)) ? Max : 0;
1161 :     ref_fdct(Blk0);
1162 :     emms(); fdct(Blk); emms();
1163 :     store_stats(&Stats, Blk, Blk0);
1164 : Isibaar 262
1165 : edgomez 1060 for(i=0; i<64; i++) Blk[i] = Blk0[i] = ((i/8)==(i%8)) ? Min : 0;
1166 :     ref_fdct(Blk0);
1167 :     emms(); fdct(Blk); emms();
1168 :     store_stats(&Stats, Blk, Blk0);
1169 : Isibaar 262
1170 : edgomez 1060 /* randomly saturated inputs */
1171 :     for(p=0; p<Partitions; ++p)
1172 :     {
1173 :     for(n=0; n<Loops; ++n)
1174 :     {
1175 :     for(i=0; i<64; ++i)
1176 :     Blk0[i] = Blk[i] = (ieee_rand(0,Partitions)>=p)? Max : Min;
1177 :     ref_fdct(Blk0);
1178 :     emms(); fdct(Blk); emms();
1179 :     store_stats(&Stats, Blk, Blk0);
1180 :     }
1181 :     }
1182 :     printf( "\n -- FDCT saturation report --\n" );
1183 :     report_stats(&Stats, 0);
1184 : Isibaar 262
1185 :    
1186 : edgomez 1060 /* IDCT tests // */
1187 : Isibaar 262 #if 0
1188 : edgomez 1060 /* no finished yet */
1189 : Isibaar 262
1190 : edgomez 1060 init_stats(&Stats);
1191 : Isibaar 262
1192 : edgomez 1060 /* test each computation channel separately */
1193 :     for(i=0; i<64; i++) Blk[i] = Blk0[i] = ((i/8)==(i%8)) ? IDCT_MAX : 0;
1194 :     ref_idct(Blk0);
1195 :     emms(); idct(Blk); emms();
1196 :     for(i=0; i<64; i++) { CLAMP(Blk0[i], IDCT_OUT); CLAMP(Blk[i], IDCT_OUT); }
1197 :     store_stats(&Stats, Blk, Blk0);
1198 : Isibaar 262
1199 : edgomez 1060 for(i=0; i<64; i++) Blk[i] = Blk0[i] = ((i/8)==(i%8)) ? IDCT_MIN : 0;
1200 :     ref_idct(Blk0);
1201 :     emms(); idct(Blk); emms();
1202 :     for(i=0; i<64; i++) { CLAMP(Blk0[i], IDCT_OUT); CLAMP(Blk[i], IDCT_OUT); }
1203 :     store_stats(&Stats, Blk, Blk0);
1204 : Isibaar 262
1205 : edgomez 1060 /* randomly saturated inputs */
1206 :     for(p=0; p<Partitions; ++p)
1207 :     {
1208 :     for(n=0; n<Loops; ++n)
1209 :     {
1210 :     for(i=0; i<64; ++i)
1211 :     Blk0[i] = Blk[i] = (ieee_rand(0,Partitions)>=p)? IDCT_MAX : IDCT_MIN;
1212 :     ref_idct(Blk0);
1213 :     emms(); idct(Blk); emms();
1214 :     for(i=0; i<64; i++) { CLAMP(Blk0[i],IDCT_OUT); CLAMP(Blk[i],IDCT_OUT); }
1215 :     store_stats(&Stats, Blk, Blk0);
1216 :     }
1217 :     }
1218 : Isibaar 262
1219 : edgomez 1060 printf( "\n -- IDCT saturation report --\n" );
1220 :     print_stats(&Stats);
1221 :     report_stats(&Stats, 0);
1222 : Isibaar 262 #endif
1223 : edgomez 1060 }
1224 : Isibaar 262 }
1225 :    
1226 :     /*********************************************************************
1227 : Isibaar 225 * measure raw decoding speed
1228 :     *********************************************************************/
1229 :    
1230 :     void test_dec(const char *name, int width, int height, int with_chksum)
1231 :     {
1232 : edgomez 1060 FILE *f = 0;
1233 :     void *dechandle = 0;
1234 :     int xerr;
1235 :     xvid_gbl_init_t xinit;
1236 :     xvid_dec_create_t xparam;
1237 :     xvid_dec_frame_t xframe;
1238 : Isibaar 225 double t = 0.;
1239 :     int nb = 0;
1240 : edgomez 1060 uint8_t *buf = 0;
1241 :     uint8_t *rgb_out = 0;
1242 :     int buf_size, pos;
1243 :     uint32_t chksum = 0;
1244 : Isibaar 225
1245 : edgomez 1060 memset(&xinit, 0, sizeof(xinit));
1246 : Isibaar 262 xinit.cpu_flags = XVID_CPU_MMX | XVID_CPU_FORCE;
1247 : edgomez 1060 xinit.version = XVID_VERSION;
1248 :     xvid_global(NULL, 0, &xinit, NULL);
1249 : Isibaar 225
1250 : edgomez 1060 memset(&xparam, 0, sizeof(xparam));
1251 : Isibaar 225 xparam.width = width;
1252 :     xparam.height = height;
1253 : edgomez 1060 xparam.version = XVID_VERSION;
1254 : Isibaar 225 xerr = xvid_decore(NULL, XVID_DEC_CREATE, &xparam, NULL);
1255 : edgomez 1060 if (xerr==XVID_ERR_FAIL) {
1256 :     printf("can't init decoder (err=%d)\n", xerr);
1257 :     return;
1258 : Isibaar 225 }
1259 :     dechandle = xparam.handle;
1260 :    
1261 :    
1262 :     f = fopen(name, "rb");
1263 : edgomez 1060 if (f==0) {
1264 :     printf( "can't open file '%s'\n", name);
1265 :     return;
1266 :     }
1267 :     fseek(f, 0, SEEK_END);
1268 :     buf_size = ftell(f);
1269 :     fseek(f, 0, SEEK_SET);
1270 :     if (buf_size<=0) {
1271 :     printf("error while stating file\n");
1272 :     goto End;
1273 :     }
1274 :     else printf( "Input size: %d\n", buf_size);
1275 : Isibaar 225
1276 : edgomez 1060 buf = malloc(buf_size); /* should be enuf' */
1277 :     rgb_out = calloc(4, width*height); /* <-room for _RGB24 */
1278 :     if (buf==0 || rgb_out==0) {
1279 :     printf( "malloc failed!\n" );
1280 :     goto End;
1281 :     }
1282 : Isibaar 225
1283 : edgomez 1060 if (fread(buf, buf_size, 1, f)!=1) {
1284 :     printf( "file-read failed\n" );
1285 :     goto End;
1286 :     }
1287 : Isibaar 225
1288 : edgomez 1060 nb = 0;
1289 :     pos = 0;
1290 :     t = -gettime_usec();
1291 :     while(1) {
1292 :     memset(&xframe, 0, sizeof(xframe));
1293 :     xframe.version = XVID_VERSION;
1294 :     xframe.bitstream = buf + pos;
1295 :     xframe.length = buf_size - pos;
1296 :     xframe.output.plane[0] = rgb_out;
1297 :     xframe.output.stride[0] = width;
1298 :     xframe.output.csp = XVID_CSP_BGR;
1299 :     xerr = xvid_decore(dechandle, XVID_DEC_DECODE, &xframe, 0);
1300 :     nb++;
1301 :     pos += xframe.length;
1302 :     if (with_chksum) {
1303 :     int k = width*height;
1304 :     uint32_t *ptr = (uint32_t *)rgb_out;
1305 :     while(k-->0) chksum += *ptr++;
1306 :     }
1307 :     if (pos==buf_size)
1308 :     break;
1309 :     if (xerr==XVID_ERR_FAIL) {
1310 :     printf("decoding failed for frame #%d (err=%d)!\n", nb, xerr);
1311 :     break;
1312 :     }
1313 :     }
1314 :     t += gettime_usec();
1315 :     if (t>0.)
1316 :     printf( "%d frames decoded in %.3f s -> %.1f FPS\n", nb, t*1.e-6f, (float)(nb*1.e6f/t) );
1317 :     if (with_chksum)
1318 :     printf("checksum: 0x%.8x\n", chksum);
1319 : Isibaar 225
1320 : edgomez 1060 End:
1321 :     if (rgb_out!=0) free(rgb_out);
1322 :     if (buf!=0) free(buf);
1323 :     if (dechandle!=0) {
1324 :     xerr= xvid_decore(dechandle, XVID_DEC_DESTROY, NULL, NULL);
1325 :     if (xerr==XVID_ERR_FAIL)
1326 :     printf("destroy-decoder failed (err=%d)!\n", xerr);
1327 :     }
1328 :     if (f!=0) fclose(f);
1329 : Isibaar 225 }
1330 :    
1331 :     /*********************************************************************
1332 :     * non-regression tests
1333 :     *********************************************************************/
1334 :    
1335 :     void test_bugs1()
1336 :     {
1337 : edgomez 1060 CPU *cpu;
1338 : edgomez 1230 uint16_t mpeg_quant_matrices[64*8];
1339 : Isibaar 225
1340 : edgomez 1060 printf( "\n ===== (de)quant4_intra saturation bug? =====\n" );
1341 : Isibaar 225
1342 : edgomez 1176 for(cpu = cpu_list; cpu->name!=0; ++cpu)
1343 : edgomez 1060 {
1344 :     int i;
1345 :     int16_t Src[8*8], Dst[8*8];
1346 : Isibaar 225
1347 : edgomez 1060 if (!init_cpu(cpu))
1348 :     continue;
1349 : Isibaar 225
1350 : edgomez 1060 for(i=0; i<64; ++i) Src[i] = i-32;
1351 : edgomez 1230 set_intra_matrix( mpeg_quant_matrices, get_default_intra_matrix() );
1352 :     dequant_mpeg_intra(Dst, Src, 31, 5, mpeg_quant_matrices);
1353 : edgomez 1176 printf( "dequant_mpeg_intra with CPU=%s: ", cpu->name);
1354 : edgomez 1060 printf( " Out[]= " );
1355 :     for(i=0; i<64; ++i) printf( "[%d]", Dst[i]);
1356 :     printf( "\n" );
1357 :     }
1358 : Isibaar 225
1359 : edgomez 1060 printf( "\n ===== (de)quant4_inter saturation bug? =====\n" );
1360 : Isibaar 225
1361 : edgomez 1176 for(cpu = cpu_list; cpu->name!=0; ++cpu)
1362 : edgomez 1060 {
1363 :     int i;
1364 :     int16_t Src[8*8], Dst[8*8];
1365 : Isibaar 225
1366 : edgomez 1060 if (!init_cpu(cpu))
1367 :     continue;
1368 : Isibaar 225
1369 : edgomez 1060 for(i=0; i<64; ++i) Src[i] = i-32;
1370 : edgomez 1230 set_inter_matrix( mpeg_quant_matrices, get_default_inter_matrix() );
1371 :     dequant_mpeg_inter(Dst, Src, 31, mpeg_quant_matrices);
1372 : edgomez 1176 printf( "dequant_mpeg_inter with CPU=%s: ", cpu->name);
1373 : edgomez 1060 printf( " Out[]= " );
1374 :     for(i=0; i<64; ++i) printf( "[%d]", Dst[i]);
1375 :     printf( "\n" );
1376 :     }
1377 : Isibaar 225 }
1378 :    
1379 :     void test_dct_precision_diffs()
1380 :     {
1381 : edgomez 1060 CPU *cpu;
1382 : edgomez 1261 DECLARE_ALIGNED_MATRIX(Blk, 8, 8, int16_t, 16);
1383 :     DECLARE_ALIGNED_MATRIX(Blk0, 8, 8, int16_t, 16);
1384 : Isibaar 225
1385 : edgomez 1060 printf( "\n ===== fdct/idct precision diffs =====\n" );
1386 : Isibaar 225
1387 : edgomez 1176 for(cpu = cpu_list; cpu->name!=0; ++cpu)
1388 : edgomez 1060 {
1389 :     int i;
1390 : Isibaar 225
1391 : edgomez 1060 if (!init_cpu(cpu))
1392 :     continue;
1393 : Isibaar 225
1394 : edgomez 1060 for(i=0; i<8*8; ++i) {
1395 :     Blk0[i] = (i*7-i*i) & 0x7f;
1396 :     Blk[i] = Blk0[i];
1397 :     }
1398 : Isibaar 225
1399 : edgomez 1060 fdct(Blk);
1400 :     idct(Blk);
1401 :     printf( " fdct+idct diffs with CPU=%s: \n", cpu->name );
1402 :     for(i=0; i<8; ++i) {
1403 :     int j;
1404 :     for(j=0; j<8; ++j) printf( " %d ", Blk[i*8+j]-Blk0[i*8+j]);
1405 :     printf("\n");
1406 :     }
1407 :     printf("\n");
1408 :     }
1409 : Isibaar 225 }
1410 :    
1411 : Isibaar 262 void test_quant_bug()
1412 :     {
1413 : edgomez 1060 const int max_Q = 31;
1414 :     int i, n, qm, q;
1415 :     CPU *cpu;
1416 : edgomez 1261 DECLARE_ALIGNED_MATRIX(Src, 8, 8, int16_t, 16);
1417 :     DECLARE_ALIGNED_MATRIX(Dst, 8, 8, int16_t, 16);
1418 : edgomez 1060 uint8_t Quant[8*8];
1419 :     CPU cpu_bug_list[] = { { "PLAINC", 0 }, { "MMX ", XVID_CPU_MMX }, {0,0} };
1420 :     uint16_t Crcs_Inter[2][32];
1421 :     uint16_t Crcs_Intra[2][32];
1422 : edgomez 1261 DECLARE_ALIGNED_MATRIX(mpeg_quant_matrices, 8, 64, uint16_t, 16);
1423 : edgomez 1230
1424 : edgomez 1060 printf( "\n ===== test MPEG4-quantize bug =====\n" );
1425 : Isibaar 225
1426 : edgomez 1060 for(i=0; i<64; ++i) Src[i] = 2048*(i-32)/32;
1427 : Isibaar 262
1428 :     #if 1
1429 : edgomez 1060 for(qm=1; qm<=255; ++qm)
1430 :     {
1431 :     for(i=0; i<8*8; ++i) Quant[i] = qm;
1432 : edgomez 1230 set_inter_matrix( mpeg_quant_matrices, Quant );
1433 : Isibaar 262
1434 : edgomez 1060 for(n=0, cpu = cpu_bug_list; cpu->name!=0; ++cpu, ++n)
1435 :     {
1436 :     uint16_t s;
1437 : Isibaar 262
1438 : edgomez 1060 if (!init_cpu(cpu))
1439 :     continue;
1440 : Isibaar 262
1441 : edgomez 1060 for(q=1; q<=max_Q; ++q) {
1442 :     emms();
1443 : edgomez 1230 quant_mpeg_inter( Dst, Src, q, mpeg_quant_matrices );
1444 : edgomez 1060 emms();
1445 :     for(s=0, i=0; i<64; ++i) s+=((uint16_t)Dst[i])^i;
1446 :     Crcs_Inter[n][q] = s;
1447 :     }
1448 :     }
1449 : Isibaar 262
1450 : edgomez 1060 for(q=1; q<=max_Q; ++q)
1451 :     for(i=0; i<n-1; ++i)
1452 :     if (Crcs_Inter[i][q]!=Crcs_Inter[i+1][q])
1453 :     printf( "Discrepancy Inter: qm=%d, q=%d -> %d/%d !\n",
1454 :     qm, q, Crcs_Inter[i][q], Crcs_Inter[i+1][q]);
1455 :     }
1456 : Isibaar 262 #endif
1457 :    
1458 :     #if 1
1459 : edgomez 1060 for(qm=1; qm<=255; ++qm)
1460 :     {
1461 :     for(i=0; i<8*8; ++i) Quant[i] = qm;
1462 : edgomez 1230 set_intra_matrix( mpeg_quant_matrices, Quant );
1463 : Isibaar 262
1464 : edgomez 1060 for(n=0, cpu = cpu_bug_list; cpu->name!=0; ++cpu, ++n)
1465 :     {
1466 :     uint16_t s;
1467 : Isibaar 262
1468 : edgomez 1060 if (!init_cpu(cpu))
1469 :     continue;
1470 : Isibaar 262
1471 : edgomez 1060 for(q=1; q<=max_Q; ++q) {
1472 :     emms();
1473 : edgomez 1230 quant_mpeg_intra( Dst, Src, q, q, mpeg_quant_matrices);
1474 : edgomez 1060 emms();
1475 :     for(s=0, i=0; i<64; ++i) s+=((uint16_t)Dst[i])^i;
1476 :     Crcs_Intra[n][q] = s;
1477 :     }
1478 :     }
1479 : Isibaar 262
1480 : edgomez 1060 for(q=1; q<=max_Q; ++q)
1481 :     for(i=0; i<n-1; ++i)
1482 :     if (Crcs_Intra[i][q]!=Crcs_Intra[i+1][q])
1483 :     printf( "Discrepancy Intra: qm=%d, q=%d -> %d/%d!\n",
1484 :     qm, q, Crcs_Inter[i][q], Crcs_Inter[i+1][q]);
1485 :     }
1486 : Isibaar 262 #endif
1487 :     }
1488 :    
1489 : Isibaar 225 /*********************************************************************
1490 :     * main
1491 :     *********************************************************************/
1492 :    
1493 :     int main(int argc, char *argv[])
1494 :     {
1495 : edgomez 1060 int what = 0;
1496 :     if (argc>1) what = atoi(argv[1]);
1497 :     if (what==0 || what==1) test_dct();
1498 :     if (what==0 || what==2) test_mb();
1499 :     if (what==0 || what==3) test_sad();
1500 :     if (what==0 || what==4) test_transfer();
1501 :     if (what==0 || what==5) test_quant();
1502 :     if (what==0 || what==6) test_cbp();
1503 : Isibaar 225
1504 : edgomez 1060 if (what==7) {
1505 :     test_IEEE1180_compliance(-256, 255, 1);
1506 :     test_IEEE1180_compliance(-256, 255,-1);
1507 :     test_IEEE1180_compliance( -5, 5, 1);
1508 :     test_IEEE1180_compliance( -5, 5,-1);
1509 :     test_IEEE1180_compliance(-300, 300, 1);
1510 :     test_IEEE1180_compliance(-300, 300,-1);
1511 :     }
1512 :     if (what==8) test_dct_saturation(-256, 255);
1513 : Isibaar 262
1514 : edgomez 1060 if (what==9) {
1515 :     int width, height;
1516 :     if (argc<5) {
1517 :     printf("usage: %s %d [bitstream] [width] [height]\n", argv[0], what);
1518 :     return 1;
1519 :     }
1520 :     width = atoi(argv[3]);
1521 :     height = atoi(argv[4]);
1522 :     test_dec(argv[2], width, height, (argc>5));
1523 :     }
1524 : Isibaar 225
1525 : edgomez 1060 if (what==-1) {
1526 :     test_dct_precision_diffs();
1527 :     test_bugs1();
1528 :     }
1529 :     if (what==-2)
1530 :     test_quant_bug();
1531 : Isibaar 262
1532 : edgomez 1230 if (what >= 0 && what <= 6) {
1533 :     printf("\n\n"
1534 :     "NB: If a function isn't optimised for a specific set of intructions,\n"
1535 :     " a C function is used instead. So don't panic if some functions\n"
1536 :     " may appear to be slow.\n");
1537 :     }
1538 :    
1539 :     #ifdef ARCH_IS_IA32
1540 :     if (what == 0 || what == 5) {
1541 :     printf("\n"
1542 :     "NB: MMX mpeg4 quantization is known to have very small errors (+/-1 magnitude)\n"
1543 :     " for 1 or 2 coefficients a block. This is mainly caused by the fact the unit\n"
1544 :     " test goes far behind the usual limits of real encoding. Please do not report\n"
1545 :     " this error to the developers.\n");
1546 :     }
1547 :     #endif
1548 :    
1549 : edgomez 1060 return 0;
1550 : Isibaar 225 }
1551 :    
1552 :     /*********************************************************************
1553 : edgomez 1220 * 'Reference' output (except for timing) on an Athlon XP 2200+
1554 : Isibaar 225 *********************************************************************/
1555 : Isibaar 262
1556 : edgomez 1230 /* as of 2002-01-07, there's a problem with MMX mpeg4-quantization */
1557 :     /* as of 2003-11-30, the problem is still here */
1558 : Isibaar 225
1559 : edgomez 1230 /*********************************************************************
1560 :    
1561 :    
1562 : edgomez 1220 ===== test fdct/idct =====
1563 : edgomez 1230 PLAINC - 2.867 usec PSNR=13.291 MSE=3.000
1564 :     MMX - -0.211 usec PSNR=9.611 MSE=7.000
1565 :     MMXEXT - -0.256 usec PSNR=9.611 MSE=7.000
1566 :     3DNOW - 2.855 usec PSNR=13.291 MSE=3.000
1567 :     3DNOWE - 1.429 usec PSNR=13.291 MSE=3.000
1568 : Isibaar 225
1569 : edgomez 1220 === test block motion ===
1570 : edgomez 1230 PLAINC - interp- h-round0 0.538 usec crc32=0x115381ba
1571 :     PLAINC - round1 0.527 usec crc32=0x2b1f528f
1572 :     PLAINC - interp- v-round0 0.554 usec crc32=0x423cdcc7
1573 :     PLAINC - round1 0.551 usec crc32=0x42202efe
1574 :     PLAINC - interp-hv-round0 1.041 usec crc32=0xd198d387
1575 :     PLAINC - round1 1.038 usec crc32=0x9ecfd921
1576 : edgomez 1220 ---
1577 : edgomez 1230 MMX - interp- h-round0 0.051 usec crc32=0x115381ba
1578 :     MMX - round1 0.053 usec crc32=0x2b1f528f
1579 :     MMX - interp- v-round0 0.048 usec crc32=0x423cdcc7
1580 :     MMX - round1 0.048 usec crc32=0x42202efe
1581 :     MMX - interp-hv-round0 0.074 usec crc32=0xd198d387
1582 :     MMX - round1 0.073 usec crc32=0x9ecfd921
1583 : edgomez 1220 ---
1584 : edgomez 1230 MMXEXT - interp- h-round0 0.020 usec crc32=0x115381ba
1585 :     MMXEXT - round1 0.025 usec crc32=0x2b1f528f
1586 :     MMXEXT - interp- v-round0 0.016 usec crc32=0x423cdcc7
1587 :     MMXEXT - round1 0.024 usec crc32=0x42202efe
1588 :     MMXEXT - interp-hv-round0 0.037 usec crc32=0xd198d387
1589 :     MMXEXT - round1 0.037 usec crc32=0x9ecfd921
1590 : edgomez 1220 ---
1591 : edgomez 1230 3DNOW - interp- h-round0 0.020 usec crc32=0x115381ba
1592 :     3DNOW - round1 0.029 usec crc32=0x2b1f528f
1593 :     3DNOW - interp- v-round0 0.016 usec crc32=0x423cdcc7
1594 :     3DNOW - round1 0.024 usec crc32=0x42202efe
1595 :     3DNOW - interp-hv-round0 0.038 usec crc32=0xd198d387
1596 :     3DNOW - round1 0.039 usec crc32=0x9ecfd921
1597 : edgomez 1220 ---
1598 : edgomez 1230 3DNOWE - interp- h-round0 0.020 usec crc32=0x115381ba
1599 :     3DNOWE - round1 0.024 usec crc32=0x2b1f528f
1600 :     3DNOWE - interp- v-round0 0.016 usec crc32=0x423cdcc7
1601 :     3DNOWE - round1 0.021 usec crc32=0x42202efe
1602 :     3DNOWE - interp-hv-round0 0.037 usec crc32=0xd198d387
1603 :     3DNOWE - round1 0.036 usec crc32=0x9ecfd921
1604 : edgomez 1220 ---
1605 : Isibaar 225
1606 : edgomez 1220 ====== test SAD ======
1607 : edgomez 1230 PLAINC - sad8 0.505 usec sad=3776
1608 :     PLAINC - sad16 1.941 usec sad=27214
1609 :     PLAINC - sad16bi 4.925 usec sad=26274
1610 :     PLAINC - dev16 4.254 usec sad=3344
1611 : edgomez 1220 ---
1612 : edgomez 1230 MMX - sad8 0.036 usec sad=3776
1613 :     MMX - sad16 0.107 usec sad=27214
1614 :     MMX - sad16bi 0.259 usec sad=26274
1615 :     MMX - dev16 0.187 usec sad=3344
1616 : edgomez 1220 ---
1617 : edgomez 1230 MMXEXT - sad8 0.016 usec sad=3776
1618 :     MMXEXT - sad16 0.050 usec sad=27214
1619 :     MMXEXT - sad16bi 0.060 usec sad=26274
1620 :     MMXEXT - dev16 0.086 usec sad=3344
1621 : edgomez 1220 ---
1622 : edgomez 1230 3DNOW - sad8 0.506 usec sad=3776
1623 :     3DNOW - sad16 1.954 usec sad=27214
1624 :     3DNOW - sad16bi 0.119 usec sad=26274
1625 :     3DNOW - dev16 4.252 usec sad=3344
1626 : edgomez 1220 ---
1627 : edgomez 1230 3DNOWE - sad8 0.017 usec sad=3776
1628 :     3DNOWE - sad16 0.038 usec sad=27214
1629 :     3DNOWE - sad16bi 0.052 usec sad=26274
1630 :     3DNOWE - dev16 0.067 usec sad=3344
1631 : edgomez 1220 ---
1632 : Isibaar 225
1633 : edgomez 1220 === test transfer ===
1634 : edgomez 1230 PLAINC - 8to16 0.603 usec crc32=0x115814bb
1635 :     PLAINC - 16to8 1.077 usec crc32=0xee7ccbb4
1636 :     PLAINC - 8to8 0.679 usec crc32=0xd37b3295
1637 :     PLAINC - 16to8add 1.341 usec crc32=0xdd817bf4
1638 :     PLAINC - 8to16sub 1.566 usec crc32(1)=0xa1e07163 crc32(2)=0xd86c5d23
1639 :     PLAINC - 8to16sub2 2.206 usec crc32=0x99b6c4c7
1640 : edgomez 1220 ---
1641 : edgomez 1230 MMX - 8to16 -0.025 usec crc32=0x115814bb
1642 :     MMX - 16to8 -0.049 usec crc32=0xee7ccbb4
1643 :     MMX - 8to8 0.014 usec crc32=0xd37b3295
1644 :     MMX - 16to8add 0.011 usec crc32=0xdd817bf4
1645 :     MMX - 8to16sub 0.108 usec crc32(1)=0xa1e07163 crc32(2)=0xd86c5d23
1646 :     MMX - 8to16sub2 0.164 usec crc32=0x99b6c4c7
1647 : edgomez 1220 ---
1648 : edgomez 1230 MMXEXT - 8to16 -0.054 usec crc32=0x115814bb
1649 :     MMXEXT - 16to8 0.010 usec crc32=0xee7ccbb4
1650 :     MMXEXT - 8to8 0.015 usec crc32=0xd37b3295
1651 :     MMXEXT - 16to8add 0.008 usec crc32=0xdd817bf4
1652 :     MMXEXT - 8to16sub 0.263 usec crc32(1)=0xa1e07163 crc32(2)=0xd86c5d23
1653 :     MMXEXT - 8to16sub2 0.178 usec crc32=0x99b6c4c7
1654 : edgomez 1220 ---
1655 : edgomez 1230 3DNOW - 8to16 0.666 usec crc32=0x115814bb
1656 :     3DNOW - 16to8 1.078 usec crc32=0xee7ccbb4
1657 :     3DNOW - 8to8 0.665 usec crc32=0xd37b3295
1658 :     3DNOW - 16to8add 1.365 usec crc32=0xdd817bf4
1659 :     3DNOW - 8to16sub 1.356 usec crc32(1)=0xa1e07163 crc32(2)=0xd86c5d23
1660 :     3DNOW - 8to16sub2 2.098 usec crc32=0x99b6c4c7
1661 : edgomez 1220 ---
1662 : edgomez 1230 3DNOWE - 8to16 -0.024 usec crc32=0x115814bb
1663 :     3DNOWE - 16to8 0.010 usec crc32=0xee7ccbb4
1664 :     3DNOWE - 8to8 0.014 usec crc32=0xd37b3295
1665 :     3DNOWE - 16to8add 0.016 usec crc32=0xdd817bf4
1666 :     3DNOWE - 8to16sub -0.000 usec crc32(1)=0xa1e07163 crc32(2)=0xd86c5d23
1667 :     3DNOWE - 8to16sub2 -0.031 usec crc32=0x99b6c4c7
1668 : edgomez 1220 ---
1669 : Isibaar 225
1670 : edgomez 1220 ===== test quant =====
1671 : edgomez 1230 PLAINC - quant_mpeg_intra 98.631 usec crc32=0xfd6a21a4
1672 :     PLAINC - quant_mpeg_inter 104.876 usec crc32=0xf6de7757
1673 :     PLAINC - dequant_mpeg_intra 50.285 usec crc32=0x2def7bc7
1674 :     PLAINC - dequant_mpeg_inter 58.316 usec crc32=0xd878c722
1675 :     PLAINC - quant_h263_intra 33.803 usec crc32=0x2eba9d43
1676 :     PLAINC - quant_h263_inter 45.411 usec crc32=0xbd315a7e
1677 :     PLAINC - dequant_h263_intra 39.302 usec crc32=0x9841212a
1678 :     PLAINC - dequant_h263_inter 44.124 usec crc32=0xe7df8fba
1679 : edgomez 1220 ---
1680 : edgomez 1230 MMX - quant_mpeg_intra 4.273 usec crc32=0xdacabdb6 | ERROR
1681 :     MMX - quant_mpeg_inter 3.576 usec crc32=0x72883ab6 | ERROR
1682 :     MMX - dequant_mpeg_intra 3.793 usec crc32=0x2def7bc7
1683 :     MMX - dequant_mpeg_inter 4.808 usec crc32=0xd878c722
1684 :     MMX - quant_h263_intra 2.881 usec crc32=0x2eba9d43
1685 :     MMX - quant_h263_inter 2.550 usec crc32=0xbd315a7e
1686 :     MMX - dequant_h263_intra 2.974 usec crc32=0x9841212a
1687 :     MMX - dequant_h263_inter 2.906 usec crc32=0xe7df8fba
1688 : edgomez 1220 ---
1689 : edgomez 1230 MMXEXT - quant_mpeg_intra 4.221 usec crc32=0xfd6a21a4
1690 :     MMXEXT - quant_mpeg_inter 4.339 usec crc32=0xf6de7757
1691 :     MMXEXT - dequant_mpeg_intra 3.802 usec crc32=0x2def7bc7
1692 :     MMXEXT - dequant_mpeg_inter 4.821 usec crc32=0xd878c722
1693 :     MMXEXT - quant_h263_intra 2.884 usec crc32=0x2eba9d43
1694 :     MMXEXT - quant_h263_inter 2.554 usec crc32=0xbd315a7e
1695 :     MMXEXT - dequant_h263_intra 2.728 usec crc32=0x9841212a
1696 :     MMXEXT - dequant_h263_inter 2.611 usec crc32=0xe7df8fba
1697 : edgomez 1220 ---
1698 : edgomez 1230 3DNOW - quant_mpeg_intra 98.512 usec crc32=0xfd6a21a4
1699 :     3DNOW - quant_mpeg_inter 104.873 usec crc32=0xf6de7757
1700 :     3DNOW - dequant_mpeg_intra 50.219 usec crc32=0x2def7bc7
1701 :     3DNOW - dequant_mpeg_inter 58.254 usec crc32=0xd878c722
1702 :     3DNOW - quant_h263_intra 33.778 usec crc32=0x2eba9d43
1703 :     3DNOW - quant_h263_inter 41.998 usec crc32=0xbd315a7e
1704 :     3DNOW - dequant_h263_intra 39.344 usec crc32=0x9841212a
1705 :     3DNOW - dequant_h263_inter 43.607 usec crc32=0xe7df8fba
1706 : edgomez 1220 ---
1707 : edgomez 1230 3DNOWE - quant_mpeg_intra 98.490 usec crc32=0xfd6a21a4
1708 :     3DNOWE - quant_mpeg_inter 104.889 usec crc32=0xf6de7757
1709 :     3DNOWE - dequant_mpeg_intra 3.277 usec crc32=0x2def7bc7
1710 :     3DNOWE - dequant_mpeg_inter 4.485 usec crc32=0xd878c722
1711 :     3DNOWE - quant_h263_intra 1.882 usec crc32=0x2eba9d43
1712 :     3DNOWE - quant_h263_inter 2.246 usec crc32=0xbd315a7e
1713 :     3DNOWE - dequant_h263_intra 3.457 usec crc32=0x9841212a
1714 :     3DNOWE - dequant_h263_inter 3.275 usec crc32=0xe7df8fba
1715 : edgomez 1220 ---
1716 : Isibaar 225
1717 : edgomez 1220 ===== test cbp =====
1718 : edgomez 1230 PLAINC - calc_cbp#1 0.168 usec cbp=0x15
1719 :     PLAINC - calc_cbp#2 0.168 usec cbp=0x38
1720 :     PLAINC - calc_cbp#3 0.157 usec cbp=0x0f
1721 :     PLAINC - calc_cbp#4 0.235 usec cbp=0x05
1722 : edgomez 1220 ---
1723 : edgomez 1230 MMX - calc_cbp#1 0.070 usec cbp=0x15
1724 :     MMX - calc_cbp#2 0.062 usec cbp=0x38
1725 :     MMX - calc_cbp#3 0.062 usec cbp=0x0f
1726 :     MMX - calc_cbp#4 0.061 usec cbp=0x05
1727 : edgomez 1220 ---
1728 :     MMXEXT - calc_cbp#1 0.062 usec cbp=0x15
1729 : edgomez 1230 MMXEXT - calc_cbp#2 0.061 usec cbp=0x38
1730 :     MMXEXT - calc_cbp#3 0.061 usec cbp=0x0f
1731 :     MMXEXT - calc_cbp#4 0.061 usec cbp=0x05
1732 : edgomez 1220 ---
1733 : edgomez 1230 3DNOW - calc_cbp#1 0.168 usec cbp=0x15
1734 :     3DNOW - calc_cbp#2 0.168 usec cbp=0x38
1735 :     3DNOW - calc_cbp#3 0.157 usec cbp=0x0f
1736 :     3DNOW - calc_cbp#4 0.238 usec cbp=0x05
1737 : edgomez 1220 ---
1738 : edgomez 1230 3DNOWE - calc_cbp#1 0.049 usec cbp=0x15
1739 :     3DNOWE - calc_cbp#2 0.049 usec cbp=0x38
1740 :     3DNOWE - calc_cbp#3 0.049 usec cbp=0x0f
1741 :     3DNOWE - calc_cbp#4 0.049 usec cbp=0x05
1742 : edgomez 1220 ---
1743 : Isibaar 262
1744 : edgomez 1230
1745 :     NB: If a function isn't optimised for a specific set of intructions,
1746 :     a C function is used instead. So don't panic if some functions
1747 :     may appear to be slow.
1748 :    
1749 :     NB: MMX mpeg4 quantization is known to have very small errors (+/-1 magnitude)
1750 :     for 1 or 2 coefficients a block. This is mainly caused by the fact the unit
1751 :     test goes far behind the usual limits of real encoding. Please do not report
1752 :     this error to the developers
1753 :    
1754 :     *********************************************************************/

No admin address has been configured
ViewVC Help
Powered by ViewVC 1.0.4