motion_test.c 3.19 KB
Newer Older
1
/* motion test. (c) 2001 Fabrice Bellard. */
Michael Niedermayer's avatar
Michael Niedermayer committed
2 3 4 5 6 7

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

Fabrice Bellard's avatar
Fabrice Bellard committed
8 9 10 11 12 13 14 15 16 17
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <sys/time.h>
#include <unistd.h>

#include "dsputil.h"

#include "i386/mmx.h"

18 19 20 21 22 23 24 25 26 27 28
int pix_abs16x16_mmx(uint8_t *blk1, uint8_t *blk2, int lx);
int pix_abs16x16_mmx1(uint8_t *blk1, uint8_t *blk2, int lx);
int pix_abs16x16_x2_mmx(uint8_t *blk1, uint8_t *blk2, int lx);
int pix_abs16x16_x2_mmx1(uint8_t *blk1, uint8_t *blk2, int lx);
int pix_abs16x16_x2_c(uint8_t *blk1, uint8_t *blk2, int lx);
int pix_abs16x16_y2_mmx(uint8_t *blk1, uint8_t *blk2, int lx);
int pix_abs16x16_y2_mmx1(uint8_t *blk1, uint8_t *blk2, int lx);
int pix_abs16x16_y2_c(uint8_t *blk1, uint8_t *blk2, int lx);
int pix_abs16x16_xy2_mmx(uint8_t *blk1, uint8_t *blk2, int lx);
int pix_abs16x16_xy2_mmx1(uint8_t *blk1, uint8_t *blk2, int lx);
int pix_abs16x16_xy2_c(uint8_t *blk1, uint8_t *blk2, int lx);
Michael Niedermayer's avatar
Michael Niedermayer committed
29

30
typedef int motion_func(uint8_t *blk1, uint8_t *blk2, int lx);
Fabrice Bellard's avatar
Fabrice Bellard committed
31 32 33 34

#define WIDTH 64
#define HEIGHT 64

35 36
uint8_t img1[WIDTH * HEIGHT];
uint8_t img2[WIDTH * HEIGHT];
Fabrice Bellard's avatar
Fabrice Bellard committed
37

38
void fill_random(uint8_t *tab, int size)
Fabrice Bellard's avatar
Fabrice Bellard committed
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
{
    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);
}

57
int64_t gettime(void)
Fabrice Bellard's avatar
Fabrice Bellard committed
58 59 60
{
    struct timeval tv;
    gettimeofday(&tv,NULL);
61
    return (int64_t)tv.tv_sec * 1000000 + tv.tv_usec;
Fabrice Bellard's avatar
Fabrice Bellard committed
62 63 64 65 66 67 68 69 70 71
}

#define NB_ITS 500

int dummy;

void test_motion(const char *name,
                 motion_func *test_func, motion_func *ref_func)
{
    int x, y, d1, d2, it;
72 73
    uint8_t *ptr;
    int64_t ti;
Fabrice Bellard's avatar
Fabrice Bellard committed
74 75 76 77 78 79 80
    printf("testing '%s'\n", name);

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

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

Fabrice Bellard's avatar
Fabrice Bellard committed
82 83
        for(y=0;y<HEIGHT-17;y++) {
            for(x=0;x<WIDTH-17;x++) {
84
                ptr = img2 + y * WIDTH + x;
Michael Niedermayer's avatar
Michael Niedermayer committed
85 86
                d1 = test_func(img1, ptr, WIDTH);
                d2 = ref_func(img1, ptr, WIDTH);
Fabrice Bellard's avatar
Fabrice Bellard committed
87 88 89 90 91 92 93
                if (d1 != d2) {
                    printf("error: mmx=%d c=%d\n", d1, d2);
                }
            }
        }
    }
    emms();
94

Fabrice Bellard's avatar
Fabrice Bellard committed
95 96 97 98 99 100
    /* 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++) {
101
                ptr = img2 + y * WIDTH + x;
Michael Niedermayer's avatar
Michael Niedermayer committed
102
                d1 += test_func(img1, ptr, WIDTH);
Fabrice Bellard's avatar
Fabrice Bellard committed
103 104 105 106 107 108
            }
        }
    }
    emms();
    dummy = d1; /* avoid optimisation */
    ti = gettime() - ti;
109 110 111

    printf("  %0.0f kop/s\n",
           (double)NB_ITS * (WIDTH - 16) * (HEIGHT - 16) /
Fabrice Bellard's avatar
Fabrice Bellard committed
112 113 114 115 116 117 118
           (double)(ti / 1000.0));
}


int main(int argc, char **argv)
{
    int c;
119

Fabrice Bellard's avatar
Fabrice Bellard committed
120 121 122 123 124 125 126 127 128 129
    for(;;) {
        c = getopt(argc, argv, "h");
        if (c == -1)
            break;
        switch(c) {
        case 'h':
            help();
            break;
        }
    }
130

Fabrice Bellard's avatar
Fabrice Bellard committed
131 132 133 134 135 136 137 138
    printf("ffmpeg motion test\n");

    test_motion("mmx", pix_abs16x16_mmx, pix_abs16x16_c);
    test_motion("mmx_x2", pix_abs16x16_x2_mmx, pix_abs16x16_x2_c);
    test_motion("mmx_y2", pix_abs16x16_y2_mmx, pix_abs16x16_y2_c);
    test_motion("mmx_xy2", pix_abs16x16_xy2_mmx, pix_abs16x16_xy2_c);
    return 0;
}