2 * (c) 2001 Fabrice Bellard
4 * This file is part of FFmpeg.
6 * FFmpeg is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * FFmpeg is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with FFmpeg; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22 * @file libavcodec/motion-test.c
34 #include "libavutil/lfg.h"
42 uint8_t img1
[WIDTH
* HEIGHT
];
43 uint8_t img2
[WIDTH
* HEIGHT
];
45 static void fill_random(uint8_t *tab
, int size
)
50 av_lfg_init(&prng
, 1);
53 tab
[i
] = av_lfg_get(&prng
) % 256;
60 static void help(void)
62 printf("motion-test [-h]\n"
63 "test motion implementations\n");
67 static int64_t gettime(void)
70 gettimeofday(&tv
,NULL
);
71 return (int64_t)tv
.tv_sec
* 1000000 + tv
.tv_usec
;
78 static void test_motion(const char *name
,
79 me_cmp_func test_func
, me_cmp_func ref_func
)
84 printf("testing '%s'\n", name
);
86 /* test correctness */
87 for(it
=0;it
<20;it
++) {
89 fill_random(img1
, WIDTH
* HEIGHT
);
90 fill_random(img2
, WIDTH
* HEIGHT
);
92 for(y
=0;y
<HEIGHT
-17;y
++) {
93 for(x
=0;x
<WIDTH
-17;x
++) {
94 ptr
= img2
+ y
* WIDTH
+ x
;
95 d1
= test_func(NULL
, img1
, ptr
, WIDTH
, 1);
96 d2
= ref_func(NULL
, img1
, ptr
, WIDTH
, 1);
98 printf("error: mmx=%d c=%d\n", d1
, d2
);
108 for(it
=0;it
<NB_ITS
;it
++) {
109 for(y
=0;y
<HEIGHT
-17;y
++) {
110 for(x
=0;x
<WIDTH
-17;x
++) {
111 ptr
= img2
+ y
* WIDTH
+ x
;
112 d1
+= test_func(NULL
, img1
, ptr
, WIDTH
, 1);
117 dummy
= d1
; /* avoid optimization */
120 printf(" %0.0f kop/s\n",
121 (double)NB_ITS
* (WIDTH
- 16) * (HEIGHT
- 16) /
122 (double)(ti
/ 1000.0));
126 int main(int argc
, char **argv
)
130 DSPContext cctx
, mmxctx
;
131 int flags
[2] = { FF_MM_MMX
, FF_MM_MMX2
};
132 int flags_size
= HAVE_MMX2
? 2 : 1;
135 c
= getopt(argc
, argv
, "h");
145 printf("ffmpeg motion test\n");
147 ctx
= avcodec_alloc_context();
148 ctx
->dsp_mask
= FF_MM_FORCE
;
149 dsputil_init(&cctx
, ctx
);
150 for (c
= 0; c
< flags_size
; c
++) {
152 ctx
->dsp_mask
= FF_MM_FORCE
| flags
[c
];
153 dsputil_init(&mmxctx
, ctx
);
155 for (x
= 0; x
< 2; x
++) {
156 printf("%s for %dx%d pixels\n", c
? "mmx2" : "mmx",
157 x
? 8 : 16, x
? 8 : 16);
158 test_motion("mmx", mmxctx
.pix_abs
[x
][0], cctx
.pix_abs
[x
][0]);
159 test_motion("mmx_x2", mmxctx
.pix_abs
[x
][1], cctx
.pix_abs
[x
][1]);
160 test_motion("mmx_y2", mmxctx
.pix_abs
[x
][2], cctx
.pix_abs
[x
][2]);
161 test_motion("mmx_xy2", mmxctx
.pix_abs
[x
][3], cctx
.pix_abs
[x
][3]);