annotate motion_test.c @ 3699:c537a97eec66 libavcodec

Add official LGPL license headers to the files that were missing them.
author diego
date Sun, 10 Sep 2006 14:02:42 +0000
parents ef2149182f1c
children c8c591fe26f8
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3699
c537a97eec66 Add official LGPL license headers to the files that were missing them.
diego
parents: 2967
diff changeset
1 /*
c537a97eec66 Add official LGPL license headers to the files that were missing them.
diego
parents: 2967
diff changeset
2 * (c) 2001 Fabrice Bellard
c537a97eec66 Add official LGPL license headers to the files that were missing them.
diego
parents: 2967
diff changeset
3 *
c537a97eec66 Add official LGPL license headers to the files that were missing them.
diego
parents: 2967
diff changeset
4 * This library is free software; you can redistribute it and/or
c537a97eec66 Add official LGPL license headers to the files that were missing them.
diego
parents: 2967
diff changeset
5 * modify it under the terms of the GNU Lesser General Public
c537a97eec66 Add official LGPL license headers to the files that were missing them.
diego
parents: 2967
diff changeset
6 * License as published by the Free Software Foundation; either
c537a97eec66 Add official LGPL license headers to the files that were missing them.
diego
parents: 2967
diff changeset
7 * version 2 of the License, or (at your option) any later version.
c537a97eec66 Add official LGPL license headers to the files that were missing them.
diego
parents: 2967
diff changeset
8 *
c537a97eec66 Add official LGPL license headers to the files that were missing them.
diego
parents: 2967
diff changeset
9 * This library is distributed in the hope that it will be useful,
c537a97eec66 Add official LGPL license headers to the files that were missing them.
diego
parents: 2967
diff changeset
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
c537a97eec66 Add official LGPL license headers to the files that were missing them.
diego
parents: 2967
diff changeset
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
c537a97eec66 Add official LGPL license headers to the files that were missing them.
diego
parents: 2967
diff changeset
12 * Lesser General Public License for more details.
c537a97eec66 Add official LGPL license headers to the files that were missing them.
diego
parents: 2967
diff changeset
13 *
c537a97eec66 Add official LGPL license headers to the files that were missing them.
diego
parents: 2967
diff changeset
14 * You should have received a copy of the GNU Lesser General Public
c537a97eec66 Add official LGPL license headers to the files that were missing them.
diego
parents: 2967
diff changeset
15 * License along with this library; if not, write to the Free Software
c537a97eec66 Add official LGPL license headers to the files that were missing them.
diego
parents: 2967
diff changeset
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
c537a97eec66 Add official LGPL license headers to the files that were missing them.
diego
parents: 2967
diff changeset
17 */
1106
1e39f273ecd6 per file doxy
michaelni
parents: 1064
diff changeset
18
1e39f273ecd6 per file doxy
michaelni
parents: 1064
diff changeset
19 /**
1e39f273ecd6 per file doxy
michaelni
parents: 1064
diff changeset
20 * @file motion_test.c
1e39f273ecd6 per file doxy
michaelni
parents: 1064
diff changeset
21 * motion test.
1e39f273ecd6 per file doxy
michaelni
parents: 1064
diff changeset
22 */
1e39f273ecd6 per file doxy
michaelni
parents: 1064
diff changeset
23
75
bb7d6fe159ad motion test
glantau
parents:
diff changeset
24 #include <stdlib.h>
bb7d6fe159ad motion test
glantau
parents:
diff changeset
25 #include <stdio.h>
bb7d6fe159ad motion test
glantau
parents:
diff changeset
26 #include <string.h>
bb7d6fe159ad motion test
glantau
parents:
diff changeset
27 #include <sys/time.h>
bb7d6fe159ad motion test
glantau
parents:
diff changeset
28 #include <unistd.h>
bb7d6fe159ad motion test
glantau
parents:
diff changeset
29
bb7d6fe159ad motion test
glantau
parents:
diff changeset
30 #include "dsputil.h"
bb7d6fe159ad motion test
glantau
parents:
diff changeset
31
bb7d6fe159ad motion test
glantau
parents:
diff changeset
32 #include "i386/mmx.h"
bb7d6fe159ad motion test
glantau
parents:
diff changeset
33
1064
b32afefe7d33 * UINTX -> uintx_t INTX -> intx_t
kabi
parents: 980
diff changeset
34 int pix_abs16x16_mmx(uint8_t *blk1, uint8_t *blk2, int lx);
b32afefe7d33 * UINTX -> uintx_t INTX -> intx_t
kabi
parents: 980
diff changeset
35 int pix_abs16x16_mmx1(uint8_t *blk1, uint8_t *blk2, int lx);
b32afefe7d33 * UINTX -> uintx_t INTX -> intx_t
kabi
parents: 980
diff changeset
36 int pix_abs16x16_x2_mmx(uint8_t *blk1, uint8_t *blk2, int lx);
b32afefe7d33 * UINTX -> uintx_t INTX -> intx_t
kabi
parents: 980
diff changeset
37 int pix_abs16x16_x2_mmx1(uint8_t *blk1, uint8_t *blk2, int lx);
b32afefe7d33 * UINTX -> uintx_t INTX -> intx_t
kabi
parents: 980
diff changeset
38 int pix_abs16x16_x2_c(uint8_t *blk1, uint8_t *blk2, int lx);
b32afefe7d33 * UINTX -> uintx_t INTX -> intx_t
kabi
parents: 980
diff changeset
39 int pix_abs16x16_y2_mmx(uint8_t *blk1, uint8_t *blk2, int lx);
b32afefe7d33 * UINTX -> uintx_t INTX -> intx_t
kabi
parents: 980
diff changeset
40 int pix_abs16x16_y2_mmx1(uint8_t *blk1, uint8_t *blk2, int lx);
b32afefe7d33 * UINTX -> uintx_t INTX -> intx_t
kabi
parents: 980
diff changeset
41 int pix_abs16x16_y2_c(uint8_t *blk1, uint8_t *blk2, int lx);
b32afefe7d33 * UINTX -> uintx_t INTX -> intx_t
kabi
parents: 980
diff changeset
42 int pix_abs16x16_xy2_mmx(uint8_t *blk1, uint8_t *blk2, int lx);
b32afefe7d33 * UINTX -> uintx_t INTX -> intx_t
kabi
parents: 980
diff changeset
43 int pix_abs16x16_xy2_mmx1(uint8_t *blk1, uint8_t *blk2, int lx);
b32afefe7d33 * UINTX -> uintx_t INTX -> intx_t
kabi
parents: 980
diff changeset
44 int pix_abs16x16_xy2_c(uint8_t *blk1, uint8_t *blk2, int lx);
75
bb7d6fe159ad motion test
glantau
parents:
diff changeset
45
1064
b32afefe7d33 * UINTX -> uintx_t INTX -> intx_t
kabi
parents: 980
diff changeset
46 typedef int motion_func(uint8_t *blk1, uint8_t *blk2, int lx);
75
bb7d6fe159ad motion test
glantau
parents:
diff changeset
47
bb7d6fe159ad motion test
glantau
parents:
diff changeset
48 #define WIDTH 64
bb7d6fe159ad motion test
glantau
parents:
diff changeset
49 #define HEIGHT 64
bb7d6fe159ad motion test
glantau
parents:
diff changeset
50
1064
b32afefe7d33 * UINTX -> uintx_t INTX -> intx_t
kabi
parents: 980
diff changeset
51 uint8_t img1[WIDTH * HEIGHT];
b32afefe7d33 * UINTX -> uintx_t INTX -> intx_t
kabi
parents: 980
diff changeset
52 uint8_t img2[WIDTH * HEIGHT];
75
bb7d6fe159ad motion test
glantau
parents:
diff changeset
53
1064
b32afefe7d33 * UINTX -> uintx_t INTX -> intx_t
kabi
parents: 980
diff changeset
54 void fill_random(uint8_t *tab, int size)
75
bb7d6fe159ad motion test
glantau
parents:
diff changeset
55 {
bb7d6fe159ad motion test
glantau
parents:
diff changeset
56 int i;
bb7d6fe159ad motion test
glantau
parents:
diff changeset
57 for(i=0;i<size;i++) {
bb7d6fe159ad motion test
glantau
parents:
diff changeset
58 #if 1
bb7d6fe159ad motion test
glantau
parents:
diff changeset
59 tab[i] = random() % 256;
bb7d6fe159ad motion test
glantau
parents:
diff changeset
60 #else
bb7d6fe159ad motion test
glantau
parents:
diff changeset
61 tab[i] = i;
bb7d6fe159ad motion test
glantau
parents:
diff changeset
62 #endif
bb7d6fe159ad motion test
glantau
parents:
diff changeset
63 }
bb7d6fe159ad motion test
glantau
parents:
diff changeset
64 }
bb7d6fe159ad motion test
glantau
parents:
diff changeset
65
bb7d6fe159ad motion test
glantau
parents:
diff changeset
66 void help(void)
bb7d6fe159ad motion test
glantau
parents:
diff changeset
67 {
bb7d6fe159ad motion test
glantau
parents:
diff changeset
68 printf("motion-test [-h]\n"
bb7d6fe159ad motion test
glantau
parents:
diff changeset
69 "test motion implementations\n");
bb7d6fe159ad motion test
glantau
parents:
diff changeset
70 exit(1);
bb7d6fe159ad motion test
glantau
parents:
diff changeset
71 }
bb7d6fe159ad motion test
glantau
parents:
diff changeset
72
1064
b32afefe7d33 * UINTX -> uintx_t INTX -> intx_t
kabi
parents: 980
diff changeset
73 int64_t gettime(void)
75
bb7d6fe159ad motion test
glantau
parents:
diff changeset
74 {
bb7d6fe159ad motion test
glantau
parents:
diff changeset
75 struct timeval tv;
bb7d6fe159ad motion test
glantau
parents:
diff changeset
76 gettimeofday(&tv,NULL);
1064
b32afefe7d33 * UINTX -> uintx_t INTX -> intx_t
kabi
parents: 980
diff changeset
77 return (int64_t)tv.tv_sec * 1000000 + tv.tv_usec;
75
bb7d6fe159ad motion test
glantau
parents:
diff changeset
78 }
bb7d6fe159ad motion test
glantau
parents:
diff changeset
79
bb7d6fe159ad motion test
glantau
parents:
diff changeset
80 #define NB_ITS 500
bb7d6fe159ad motion test
glantau
parents:
diff changeset
81
bb7d6fe159ad motion test
glantau
parents:
diff changeset
82 int dummy;
bb7d6fe159ad motion test
glantau
parents:
diff changeset
83
bb7d6fe159ad motion test
glantau
parents:
diff changeset
84 void test_motion(const char *name,
bb7d6fe159ad motion test
glantau
parents:
diff changeset
85 motion_func *test_func, motion_func *ref_func)
bb7d6fe159ad motion test
glantau
parents:
diff changeset
86 {
bb7d6fe159ad motion test
glantau
parents:
diff changeset
87 int x, y, d1, d2, it;
1064
b32afefe7d33 * UINTX -> uintx_t INTX -> intx_t
kabi
parents: 980
diff changeset
88 uint8_t *ptr;
b32afefe7d33 * UINTX -> uintx_t INTX -> intx_t
kabi
parents: 980
diff changeset
89 int64_t ti;
75
bb7d6fe159ad motion test
glantau
parents:
diff changeset
90 printf("testing '%s'\n", name);
bb7d6fe159ad motion test
glantau
parents:
diff changeset
91
bb7d6fe159ad motion test
glantau
parents:
diff changeset
92 /* test correctness */
bb7d6fe159ad motion test
glantau
parents:
diff changeset
93 for(it=0;it<20;it++) {
bb7d6fe159ad motion test
glantau
parents:
diff changeset
94
bb7d6fe159ad motion test
glantau
parents:
diff changeset
95 fill_random(img1, WIDTH * HEIGHT);
bb7d6fe159ad motion test
glantau
parents:
diff changeset
96 fill_random(img2, WIDTH * HEIGHT);
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 1106
diff changeset
97
75
bb7d6fe159ad motion test
glantau
parents:
diff changeset
98 for(y=0;y<HEIGHT-17;y++) {
bb7d6fe159ad motion test
glantau
parents:
diff changeset
99 for(x=0;x<WIDTH-17;x++) {
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 1106
diff changeset
100 ptr = img2 + y * WIDTH + x;
644
641708b5c33c fixing tests
michaelni
parents: 429
diff changeset
101 d1 = test_func(img1, ptr, WIDTH);
641708b5c33c fixing tests
michaelni
parents: 429
diff changeset
102 d2 = ref_func(img1, ptr, WIDTH);
75
bb7d6fe159ad motion test
glantau
parents:
diff changeset
103 if (d1 != d2) {
bb7d6fe159ad motion test
glantau
parents:
diff changeset
104 printf("error: mmx=%d c=%d\n", d1, d2);
bb7d6fe159ad motion test
glantau
parents:
diff changeset
105 }
bb7d6fe159ad motion test
glantau
parents:
diff changeset
106 }
bb7d6fe159ad motion test
glantau
parents:
diff changeset
107 }
bb7d6fe159ad motion test
glantau
parents:
diff changeset
108 }
bb7d6fe159ad motion test
glantau
parents:
diff changeset
109 emms();
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 1106
diff changeset
110
75
bb7d6fe159ad motion test
glantau
parents:
diff changeset
111 /* speed test */
bb7d6fe159ad motion test
glantau
parents:
diff changeset
112 ti = gettime();
bb7d6fe159ad motion test
glantau
parents:
diff changeset
113 d1 = 0;
bb7d6fe159ad motion test
glantau
parents:
diff changeset
114 for(it=0;it<NB_ITS;it++) {
bb7d6fe159ad motion test
glantau
parents:
diff changeset
115 for(y=0;y<HEIGHT-17;y++) {
bb7d6fe159ad motion test
glantau
parents:
diff changeset
116 for(x=0;x<WIDTH-17;x++) {
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 1106
diff changeset
117 ptr = img2 + y * WIDTH + x;
644
641708b5c33c fixing tests
michaelni
parents: 429
diff changeset
118 d1 += test_func(img1, ptr, WIDTH);
75
bb7d6fe159ad motion test
glantau
parents:
diff changeset
119 }
bb7d6fe159ad motion test
glantau
parents:
diff changeset
120 }
bb7d6fe159ad motion test
glantau
parents:
diff changeset
121 }
bb7d6fe159ad motion test
glantau
parents:
diff changeset
122 emms();
bb7d6fe159ad motion test
glantau
parents:
diff changeset
123 dummy = d1; /* avoid optimisation */
bb7d6fe159ad motion test
glantau
parents:
diff changeset
124 ti = gettime() - ti;
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 1106
diff changeset
125
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 1106
diff changeset
126 printf(" %0.0f kop/s\n",
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 1106
diff changeset
127 (double)NB_ITS * (WIDTH - 16) * (HEIGHT - 16) /
75
bb7d6fe159ad motion test
glantau
parents:
diff changeset
128 (double)(ti / 1000.0));
bb7d6fe159ad motion test
glantau
parents:
diff changeset
129 }
bb7d6fe159ad motion test
glantau
parents:
diff changeset
130
bb7d6fe159ad motion test
glantau
parents:
diff changeset
131
bb7d6fe159ad motion test
glantau
parents:
diff changeset
132 int main(int argc, char **argv)
bb7d6fe159ad motion test
glantau
parents:
diff changeset
133 {
bb7d6fe159ad motion test
glantau
parents:
diff changeset
134 int c;
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 1106
diff changeset
135
75
bb7d6fe159ad motion test
glantau
parents:
diff changeset
136 for(;;) {
bb7d6fe159ad motion test
glantau
parents:
diff changeset
137 c = getopt(argc, argv, "h");
bb7d6fe159ad motion test
glantau
parents:
diff changeset
138 if (c == -1)
bb7d6fe159ad motion test
glantau
parents:
diff changeset
139 break;
bb7d6fe159ad motion test
glantau
parents:
diff changeset
140 switch(c) {
bb7d6fe159ad motion test
glantau
parents:
diff changeset
141 case 'h':
bb7d6fe159ad motion test
glantau
parents:
diff changeset
142 help();
bb7d6fe159ad motion test
glantau
parents:
diff changeset
143 break;
bb7d6fe159ad motion test
glantau
parents:
diff changeset
144 }
bb7d6fe159ad motion test
glantau
parents:
diff changeset
145 }
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 1106
diff changeset
146
75
bb7d6fe159ad motion test
glantau
parents:
diff changeset
147 printf("ffmpeg motion test\n");
bb7d6fe159ad motion test
glantau
parents:
diff changeset
148
bb7d6fe159ad motion test
glantau
parents:
diff changeset
149 test_motion("mmx", pix_abs16x16_mmx, pix_abs16x16_c);
bb7d6fe159ad motion test
glantau
parents:
diff changeset
150 test_motion("mmx_x2", pix_abs16x16_x2_mmx, pix_abs16x16_x2_c);
bb7d6fe159ad motion test
glantau
parents:
diff changeset
151 test_motion("mmx_y2", pix_abs16x16_y2_mmx, pix_abs16x16_y2_c);
bb7d6fe159ad motion test
glantau
parents:
diff changeset
152 test_motion("mmx_xy2", pix_abs16x16_xy2_mmx, pix_abs16x16_xy2_c);
bb7d6fe159ad motion test
glantau
parents:
diff changeset
153 return 0;
bb7d6fe159ad motion test
glantau
parents:
diff changeset
154 }