motion-test.c 3.8 KB
Newer Older
1 2 3
/*
 * (c) 2001 Fabrice Bellard
 *
4 5 6
 * This file is part of FFmpeg.
 *
 * FFmpeg is free software; you can redistribute it and/or
7 8
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
9
 * version 2.1 of the License, or (at your option) any later version.
10
 *
11
 * FFmpeg is distributed in the hope that it will be useful,
12 13 14 15 16
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * 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 19
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 */
Michael Niedermayer's avatar
Michael Niedermayer committed
20 21 22 23 24 25

/**
 * @file motion_test.c
 * motion test.
 */

Fabrice Bellard's avatar
Fabrice Bellard committed
26 27 28 29 30 31 32 33 34 35
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <sys/time.h>
#include <unistd.h>

#include "dsputil.h"

#include "i386/mmx.h"

36
#undef exit
37
#undef printf
38
#undef random
39

Fabrice Bellard's avatar
Fabrice Bellard committed
40 41 42
#define WIDTH 64
#define HEIGHT 64

43 44
uint8_t img1[WIDTH * HEIGHT];
uint8_t img2[WIDTH * HEIGHT];
Fabrice Bellard's avatar
Fabrice Bellard committed
45

46
void fill_random(uint8_t *tab, int size)
Fabrice Bellard's avatar
Fabrice Bellard committed
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
{
    int i;
    for(i=0;i<size;i++) {
#if 1
        tab[i] = random() % 256;
#else
        tab[i] = i;
#endif
    }
}

void help(void)
{
    printf("motion-test [-h]\n"
           "test motion implementations\n");
    exit(1);
}

65
int64_t gettime(void)
Fabrice Bellard's avatar
Fabrice Bellard committed
66 67 68
{
    struct timeval tv;
    gettimeofday(&tv,NULL);
69
    return (int64_t)tv.tv_sec * 1000000 + tv.tv_usec;
Fabrice Bellard's avatar
Fabrice Bellard committed
70 71 72 73 74 75 76
}

#define NB_ITS 500

int dummy;

void test_motion(const char *name,
77
                 me_cmp_func test_func, me_cmp_func ref_func)
Fabrice Bellard's avatar
Fabrice Bellard committed
78 79
{
    int x, y, d1, d2, it;
80 81
    uint8_t *ptr;
    int64_t ti;
Fabrice Bellard's avatar
Fabrice Bellard committed
82 83 84 85 86 87 88
    printf("testing '%s'\n", name);

    /* test correctness */
    for(it=0;it<20;it++) {

        fill_random(img1, WIDTH * HEIGHT);
        fill_random(img2, WIDTH * HEIGHT);
89

Fabrice Bellard's avatar
Fabrice Bellard committed
90 91
        for(y=0;y<HEIGHT-17;y++) {
            for(x=0;x<WIDTH-17;x++) {
92
                ptr = img2 + y * WIDTH + x;
93 94
                d1 = test_func(NULL, img1, ptr, WIDTH, 1);
                d2 = ref_func(NULL, img1, ptr, WIDTH, 1);
Fabrice Bellard's avatar
Fabrice Bellard committed
95 96 97 98 99 100
                if (d1 != d2) {
                    printf("error: mmx=%d c=%d\n", d1, d2);
                }
            }
        }
    }
101
    emms_c();
102

Fabrice Bellard's avatar
Fabrice Bellard committed
103 104 105 106 107 108
    /* speed test */
    ti = gettime();
    d1 = 0;
    for(it=0;it<NB_ITS;it++) {
        for(y=0;y<HEIGHT-17;y++) {
            for(x=0;x<WIDTH-17;x++) {
109
                ptr = img2 + y * WIDTH + x;
110
                d1 += test_func(NULL, img1, ptr, WIDTH, 1);
Fabrice Bellard's avatar
Fabrice Bellard committed
111 112 113
            }
        }
    }
114
    emms_c();
Vitor Sessak's avatar
Vitor Sessak committed
115
    dummy = d1; /* avoid optimization */
Fabrice Bellard's avatar
Fabrice Bellard committed
116
    ti = gettime() - ti;
117 118 119

    printf("  %0.0f kop/s\n",
           (double)NB_ITS * (WIDTH - 16) * (HEIGHT - 16) /
Fabrice Bellard's avatar
Fabrice Bellard committed
120 121 122 123 124 125
           (double)(ti / 1000.0));
}


int main(int argc, char **argv)
{
126
    AVCodecContext *ctx;
Fabrice Bellard's avatar
Fabrice Bellard committed
127
    int c;
128 129
    DSPContext cctx, mmxctx;
    int flags[2] = { FF_MM_MMX, FF_MM_MMXEXT };
130

Fabrice Bellard's avatar
Fabrice Bellard committed
131 132 133 134 135 136 137 138 139 140
    for(;;) {
        c = getopt(argc, argv, "h");
        if (c == -1)
            break;
        switch(c) {
        case 'h':
            help();
            break;
        }
    }
141

Fabrice Bellard's avatar
Fabrice Bellard committed
142 143
    printf("ffmpeg motion test\n");

144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162
    ctx = avcodec_alloc_context();
    ctx->dsp_mask = FF_MM_FORCE;
    dsputil_init(&cctx, ctx);
    for (c = 0; c < 2; c++) {
        int x;
        ctx->dsp_mask = FF_MM_FORCE | flags[c];
        dsputil_init(&mmxctx, ctx);

        for (x = 0; x < 2; x++) {
            printf("%s for %dx%d pixels\n", c ? "mmx2" : "mmx",
                   x ? 8 : 16, x ? 8 : 16);
            test_motion("mmx",     mmxctx.pix_abs[x][0], cctx.pix_abs[x][0]);
            test_motion("mmx_x2",  mmxctx.pix_abs[x][1], cctx.pix_abs[x][1]);
            test_motion("mmx_y2",  mmxctx.pix_abs[x][2], cctx.pix_abs[x][2]);
            test_motion("mmx_xy2", mmxctx.pix_abs[x][3], cctx.pix_abs[x][3]);
        }
    }
    av_free(ctx);

Fabrice Bellard's avatar
Fabrice Bellard committed
163 164
    return 0;
}