00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00026 #include <stdlib.h>
00027 #include <stdio.h>
00028 #include <string.h>
00029 #include <sys/time.h>
00030 #include <unistd.h>
00031
00032 #include "config.h"
00033 #include "dsputil.h"
00034 #include "libavutil/lfg.h"
00035
00036 #undef printf
00037
00038 #define WIDTH 64
00039 #define HEIGHT 64
00040
00041 static uint8_t img1[WIDTH * HEIGHT];
00042 static uint8_t img2[WIDTH * HEIGHT];
00043
00044 static void fill_random(uint8_t *tab, int size)
00045 {
00046 int i;
00047 AVLFG prng;
00048
00049 av_lfg_init(&prng, 1);
00050 for(i=0;i<size;i++) {
00051 tab[i] = av_lfg_get(&prng) % 256;
00052 }
00053 }
00054
00055 static void help(void)
00056 {
00057 printf("motion-test [-h]\n"
00058 "test motion implementations\n");
00059 }
00060
00061 static int64_t gettime(void)
00062 {
00063 struct timeval tv;
00064 gettimeofday(&tv,NULL);
00065 return (int64_t)tv.tv_sec * 1000000 + tv.tv_usec;
00066 }
00067
00068 #define NB_ITS 500
00069
00070 int dummy;
00071
00072 static void test_motion(const char *name,
00073 me_cmp_func test_func, me_cmp_func ref_func)
00074 {
00075 int x, y, d1, d2, it;
00076 uint8_t *ptr;
00077 int64_t ti;
00078 printf("testing '%s'\n", name);
00079
00080
00081 for(it=0;it<20;it++) {
00082
00083 fill_random(img1, WIDTH * HEIGHT);
00084 fill_random(img2, WIDTH * HEIGHT);
00085
00086 for(y=0;y<HEIGHT-17;y++) {
00087 for(x=0;x<WIDTH-17;x++) {
00088 ptr = img2 + y * WIDTH + x;
00089 d1 = test_func(NULL, img1, ptr, WIDTH, 1);
00090 d2 = ref_func(NULL, img1, ptr, WIDTH, 1);
00091 if (d1 != d2) {
00092 printf("error: mmx=%d c=%d\n", d1, d2);
00093 }
00094 }
00095 }
00096 }
00097 emms_c();
00098
00099
00100 ti = gettime();
00101 d1 = 0;
00102 for(it=0;it<NB_ITS;it++) {
00103 for(y=0;y<HEIGHT-17;y++) {
00104 for(x=0;x<WIDTH-17;x++) {
00105 ptr = img2 + y * WIDTH + x;
00106 d1 += test_func(NULL, img1, ptr, WIDTH, 1);
00107 }
00108 }
00109 }
00110 emms_c();
00111 dummy = d1;
00112 ti = gettime() - ti;
00113
00114 printf(" %0.0f kop/s\n",
00115 (double)NB_ITS * (WIDTH - 16) * (HEIGHT - 16) /
00116 (double)(ti / 1000.0));
00117 }
00118
00119
00120 int main(int argc, char **argv)
00121 {
00122 AVCodecContext *ctx;
00123 int c;
00124 DSPContext cctx, mmxctx;
00125 int flags[2] = { AV_CPU_FLAG_MMX, AV_CPU_FLAG_MMX2 };
00126 int flags_size = HAVE_MMX2 ? 2 : 1;
00127
00128 for(;;) {
00129 c = getopt(argc, argv, "h");
00130 if (c == -1)
00131 break;
00132 switch(c) {
00133 case 'h':
00134 help();
00135 return 1;
00136 }
00137 }
00138
00139 printf("ffmpeg motion test\n");
00140
00141 ctx = avcodec_alloc_context3(NULL);
00142 ctx->dsp_mask = AV_CPU_FLAG_FORCE;
00143 ff_dsputil_init(&cctx, ctx);
00144 for (c = 0; c < flags_size; c++) {
00145 int x;
00146 ctx->dsp_mask = AV_CPU_FLAG_FORCE | flags[c];
00147 ff_dsputil_init(&mmxctx, ctx);
00148
00149 for (x = 0; x < 2; x++) {
00150 printf("%s for %dx%d pixels\n", c ? "mmx2" : "mmx",
00151 x ? 8 : 16, x ? 8 : 16);
00152 test_motion("mmx", mmxctx.pix_abs[x][0], cctx.pix_abs[x][0]);
00153 test_motion("mmx_x2", mmxctx.pix_abs[x][1], cctx.pix_abs[x][1]);
00154 test_motion("mmx_y2", mmxctx.pix_abs[x][2], cctx.pix_abs[x][2]);
00155 test_motion("mmx_xy2", mmxctx.pix_abs[x][3], cctx.pix_abs[x][3]);
00156 }
00157 }
00158 av_free(ctx);
00159
00160 return 0;
00161 }