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