libavcodec/dct-test.c
04d7f601
 /*
  * (c) 2001 Fabrice Bellard
3ac35bdb
  *     2007 Marc Hoffman <marc.hoffman@analog.com>
04d7f601
  *
b78e7197
  * This file is part of FFmpeg.
  *
  * FFmpeg is free software; you can redistribute it and/or
04d7f601
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
b78e7197
  * version 2.1 of the License, or (at your option) any later version.
04d7f601
  *
b78e7197
  * FFmpeg is distributed in the hope that it will be useful,
04d7f601
  * 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
b78e7197
  * License along with FFmpeg; if not, write to the Free Software
04d7f601
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
983e3246
 /**
ba87f080
  * @file
94f694a4
  * DCT test (c) 2001 Fabrice Bellard
983e3246
  * Started from sample code by Juan J. Sierralta P.
  */
 
de6d9b64
 #include <stdlib.h>
 #include <stdio.h>
 #include <string.h>
 #include <sys/time.h>
 #include <unistd.h>
12807c8d
 #include <math.h>
de6d9b64
 
c6c98d08
 #include "libavutil/cpu.h"
ae32e509
 #include "libavutil/common.h"
294eaa26
 #include "libavutil/lfg.h"
de6d9b64
 
86748dbc
 #include "simple_idct.h"
10ac3618
 #include "aandcttab.h"
65e4c8c9
 #include "faandct.h"
6f08c541
 #include "faanidct.h"
a6493a8f
 #include "x86/idct_xvid.h"
6a813295
 #include "dctref.h"
9e1586fc
 
434df899
 #undef printf
 
9686df2b
 void ff_mmx_idct(DCTELEM *data);
 void ff_mmxext_idct(DCTELEM *data);
9e1586fc
 
9686df2b
 void odivx_idct_c(short *block);
86748dbc
 
3ac35bdb
 // BFIN
9686df2b
 void ff_bfin_idct(DCTELEM *block);
 void ff_bfin_fdct(DCTELEM *block);
3ac35bdb
 
 // ALTIVEC
9686df2b
 void fdct_altivec(DCTELEM *block);
 //void idct_altivec(DCTELEM *block);?? no routine
3ac35bdb
 
479044ce
 // ARM
0926c009
 void ff_j_rev_dct_arm(DCTELEM *data);
 void ff_simple_idct_arm(DCTELEM *data);
 void ff_simple_idct_armv5te(DCTELEM *data);
479044ce
 void ff_simple_idct_armv6(DCTELEM *data);
 void ff_simple_idct_neon(DCTELEM *data);
3ac35bdb
 
2a839eeb
 void ff_simple_idct_axp(DCTELEM *data);
 
3ac35bdb
 struct algo {
36fa9ef3
     const char *name;
     void (*func)(DCTELEM *block);
     enum formattag { NO_PERM, MMX_PERM, MMX_SIMPLE_PERM, SCALE_PERM,
dfeeb85b
                      SSE2_PERM, PARTTRANS_PERM, TRANSPOSE_PERM } format;
36fa9ef3
     int mm_support;
dbf396d4
     int nonspec;
3ac35bdb
 };
 
 #ifndef FAAN_POSTSCALE
 #define FAAN_SCALE SCALE_PERM
 #else
 #define FAAN_SCALE NO_PERM
 #endif
 
aadd27cd
 static int cpu_flags;
 
4b357756
 static const struct algo fdct_tab[] = {
74965f26
     { "REF-DBL",        ff_ref_fdct,           NO_PERM    },
     { "FAAN",           ff_faandct,            FAAN_SCALE },
     { "IJG-AAN-INT",    fdct_ifast,            SCALE_PERM },
0a72533e
     { "IJG-LLM-INT",    ff_jpeg_fdct_islow_8,  NO_PERM    },
3ac35bdb
 
b250f9c6
 #if HAVE_MMX
74965f26
     { "MMX",            ff_fdct_mmx,           NO_PERM,   AV_CPU_FLAG_MMX     },
     { "MMX2",           ff_fdct_mmx2,          NO_PERM,   AV_CPU_FLAG_MMX2    },
     { "SSE2",           ff_fdct_sse2,          NO_PERM,   AV_CPU_FLAG_SSE2    },
94254fc0
 #endif
3ac35bdb
 
4b357756
 #if HAVE_ALTIVEC
74965f26
     { "altivecfdct",    fdct_altivec,          NO_PERM,   AV_CPU_FLAG_ALTIVEC },
b9702de5
 #endif
4b357756
 
 #if ARCH_BFIN
74965f26
     { "BFINfdct",       ff_bfin_fdct,          NO_PERM  },
3ac35bdb
 #endif
 
4b357756
     { 0 }
 };
 
96b0ddee
 #if HAVE_MMX
 void ff_prores_idct_put_10_sse2(uint16_t *dst, int linesize,
                                 DCTELEM *block, int16_t *qmat);
 
 static void ff_prores_idct_put_10_sse2_wrap(uint16_t *dst){
     int16_t qmat[64]; int i;
     int16_t tmp[64];
 
     for(i=0; i<64; i++){
         qmat[i]=4;
         tmp[i]= dst[i];
     }
     ff_prores_idct_put_10_sse2(dst, 16, tmp, qmat);
 }
 #endif
 
4b357756
 static const struct algo idct_tab[] = {
74965f26
     { "FAANI",          ff_faanidct,           NO_PERM  },
     { "REF-DBL",        ff_ref_idct,           NO_PERM  },
     { "INT",            j_rev_dct,             MMX_PERM },
e7a972e1
     { "SIMPLE-C",       ff_simple_idct_8,      NO_PERM  },
4b357756
 
 #if HAVE_MMX
b250f9c6
 #if CONFIG_GPL
74965f26
     { "LIBMPEG2-MMX",   ff_mmx_idct,           MMX_PERM,  AV_CPU_FLAG_MMX,  1 },
     { "LIBMPEG2-MMX2",  ff_mmxext_idct,        MMX_PERM,  AV_CPU_FLAG_MMX2, 1 },
b9702de5
 #endif
74965f26
     { "SIMPLE-MMX",     ff_simple_idct_mmx,  MMX_SIMPLE_PERM, AV_CPU_FLAG_MMX },
     { "XVID-MMX",       ff_idct_xvid_mmx,      NO_PERM,   AV_CPU_FLAG_MMX,  1 },
     { "XVID-MMX2",      ff_idct_xvid_mmx2,     NO_PERM,   AV_CPU_FLAG_MMX2, 1 },
     { "XVID-SSE2",      ff_idct_xvid_sse2,     SSE2_PERM, AV_CPU_FLAG_SSE2, 1 },
ee93363f
 #if ARCH_X86_64
96b0ddee
     { "PR-SSE2",        ff_prores_idct_put_10_sse2_wrap,     TRANSPOSE_PERM, AV_CPU_FLAG_SSE2, 1 },
3ac35bdb
 #endif
ee93363f
 #endif
3ac35bdb
 
b250f9c6
 #if ARCH_BFIN
74965f26
     { "BFINidct",       ff_bfin_idct,          NO_PERM  },
3ac35bdb
 #endif
 
b250f9c6
 #if ARCH_ARM
74965f26
     { "SIMPLE-ARM",     ff_simple_idct_arm,    NO_PERM  },
     { "INT-ARM",        ff_j_rev_dct_arm,      MMX_PERM },
4b357756
 #endif
b250f9c6
 #if HAVE_ARMV5TE
74965f26
     { "SIMPLE-ARMV5TE", ff_simple_idct_armv5te,NO_PERM  },
479044ce
 #endif
b250f9c6
 #if HAVE_ARMV6
74965f26
     { "SIMPLE-ARMV6",   ff_simple_idct_armv6,  MMX_PERM },
479044ce
 #endif
b250f9c6
 #if HAVE_NEON
74965f26
     { "SIMPLE-NEON",    ff_simple_idct_neon,   PARTTRANS_PERM },
479044ce
 #endif
 
2a839eeb
 #if ARCH_ALPHA
74965f26
     { "SIMPLE-ALPHA",   ff_simple_idct_axp,    NO_PERM },
2a839eeb
 #endif
 
36fa9ef3
     { 0 }
3ac35bdb
 };
 
de6d9b64
 #define AANSCALE_BITS 12
 
4dccfff9
 static uint8_t cropTbl[256 + 2 * MAX_NEG_CROP];
86748dbc
 
504ffed1
 static int64_t gettime(void)
de6d9b64
 {
     struct timeval tv;
36fa9ef3
     gettimeofday(&tv, NULL);
0c1a9eda
     return (int64_t)tv.tv_sec * 1000000 + tv.tv_usec;
de6d9b64
 }
 
 #define NB_ITS 20000
 #define NB_ITS_SPEED 50000
 
9e1586fc
 static short idct_mmx_perm[64];
 
36fa9ef3
 static short idct_simple_mmx_perm[64] = {
     0x00, 0x08, 0x04, 0x09, 0x01, 0x0C, 0x05, 0x0D,
     0x10, 0x18, 0x14, 0x19, 0x11, 0x1C, 0x15, 0x1D,
     0x20, 0x28, 0x24, 0x29, 0x21, 0x2C, 0x25, 0x2D,
     0x12, 0x1A, 0x16, 0x1B, 0x13, 0x1E, 0x17, 0x1F,
     0x02, 0x0A, 0x06, 0x0B, 0x03, 0x0E, 0x07, 0x0F,
     0x30, 0x38, 0x34, 0x39, 0x31, 0x3C, 0x35, 0x3D,
     0x22, 0x2A, 0x26, 0x2B, 0x23, 0x2E, 0x27, 0x2F,
     0x32, 0x3A, 0x36, 0x3B, 0x33, 0x3E, 0x37, 0x3F,
86748dbc
 };
 
36fa9ef3
 static const uint8_t idct_sse2_row_perm[8] = { 0, 4, 1, 5, 2, 6, 3, 7 };
ad246860
 
504ffed1
 static void idct_mmx_init(void)
9e1586fc
 {
     int i;
 
     /* the mmx/mmxext idct uses a reordered input, so we patch scan tables */
     for (i = 0; i < 64; i++) {
bb270c08
         idct_mmx_perm[i] = (i & 0x38) | ((i & 6) >> 1) | ((i & 1) << 2);
9e1586fc
     }
 }
 
c6727809
 DECLARE_ALIGNED(16, static DCTELEM, block)[64];
36fa9ef3
 DECLARE_ALIGNED(8,  static DCTELEM, block1)[64];
9e1586fc
 
aadd27cd
 static inline void mmx_emms(void)
 {
b250f9c6
 #if HAVE_MMX
7160bb71
     if (cpu_flags & AV_CPU_FLAG_MMX)
be449fca
         __asm__ volatile ("emms\n\t");
aadd27cd
 #endif
 }
 
3e1a7ae4
 static void init_block(DCTELEM block[64], int test, int is_idct, AVLFG *prng, int vals)
ae2e8971
 {
     int i, j;
 
     memset(block, 0, 64 * sizeof(*block));
 
     switch (test) {
     case 0:
         for (i = 0; i < 64; i++)
3e1a7ae4
             block[i] = (av_lfg_get(prng) % (2*vals)) -vals;
ae2e8971
         if (is_idct) {
             ff_ref_fdct(block);
             for (i = 0; i < 64; i++)
                 block[i] >>= 3;
         }
         break;
     case 1:
         j = av_lfg_get(prng) % 10 + 1;
         for (i = 0; i < j; i++)
3e1a7ae4
             block[av_lfg_get(prng) % 64] = av_lfg_get(prng) % (2*vals) -vals;
ae2e8971
         break;
     case 2:
3e1a7ae4
         block[ 0] = av_lfg_get(prng) % (16*vals) - (8*vals);
ae2e8971
         block[63] = (block[0] & 1) ^ 1;
         break;
     }
 }
 
 static void permute(DCTELEM dst[64], const DCTELEM src[64], int perm)
 {
     int i;
 
     if (perm == MMX_PERM) {
         for (i = 0; i < 64; i++)
             dst[idct_mmx_perm[i]] = src[i];
     } else if (perm == MMX_SIMPLE_PERM) {
         for (i = 0; i < 64; i++)
             dst[idct_simple_mmx_perm[i]] = src[i];
     } else if (perm == SSE2_PERM) {
         for (i = 0; i < 64; i++)
             dst[(i & 0x38) | idct_sse2_row_perm[i & 7]] = src[i];
     } else if (perm == PARTTRANS_PERM) {
         for (i = 0; i < 64; i++)
             dst[(i & 0x24) | ((i & 3) << 3) | ((i >> 3) & 3)] = src[i];
dfeeb85b
     } else if (perm == TRANSPOSE_PERM) {
         for (i = 0; i < 64; i++)
             dst[(i>>3) | ((i<<3)&0x38)] = src[i];
ae2e8971
     } else {
         for (i = 0; i < 64; i++)
             dst[i] = src[i];
     }
 }
5d4fd1d1
 
 static int dct_error(const struct algo *dct, int test, int is_idct, int speed, const int bits)
de6d9b64
 {
74965f26
     void (*ref)(DCTELEM *block) = is_idct ? ff_ref_idct : ff_ref_fdct;
de6d9b64
     int it, i, scale;
     int err_inf, v;
dbf396d4
     int64_t err2, ti, ti1, it1, err_sum = 0;
36fa9ef3
     int64_t sysErr[64], sysErrMax = 0;
     int maxout = 0;
     int blockSumErrMax = 0, blockSumErr;
64bde197
     AVLFG prng;
007d352c
     const int vals=1<<bits;
dbf396d4
     double omse, ome;
     int spec_err;
de6d9b64
 
64bde197
     av_lfg_init(&prng, 1);
de6d9b64
 
     err_inf = 0;
     err2 = 0;
36fa9ef3
     for (i = 0; i < 64; i++)
         sysErr[i] = 0;
     for (it = 0; it < NB_ITS; it++) {
3e1a7ae4
         init_block(block1, test, is_idct, &prng, vals);
ae2e8971
         permute(block, block1, dct->format);
9e1586fc
 
4f905a65
         dct->func(block);
aadd27cd
         mmx_emms();
9e1586fc
 
4f905a65
         if (dct->format == SCALE_PERM) {
36fa9ef3
             for (i = 0; i < 64; i++) {
                 scale = 8 * (1 << (AANSCALE_BITS + 11)) / ff_aanscales[i];
                 block[i] = (block[i] * scale) >> AANSCALE_BITS;
86748dbc
             }
         }
 
74965f26
         ref(block1);
de6d9b64
 
36fa9ef3
         blockSumErr = 0;
         for (i = 0; i < 64; i++) {
dbf396d4
             int err = block[i] - block1[i];
             err_sum += err;
             v = abs(err);
de6d9b64
             if (v > err_inf)
                 err_inf = v;
             err2 += v * v;
bb270c08
             sysErr[i] += block[i] - block1[i];
             blockSumErr += v;
36fa9ef3
             if (abs(block[i]) > maxout)
                 maxout = abs(block[i]);
de6d9b64
         }
36fa9ef3
         if (blockSumErrMax < blockSumErr)
             blockSumErrMax = blockSumErr;
86748dbc
     }
36fa9ef3
     for (i = 0; i < 64; i++)
         sysErrMax = FFMAX(sysErrMax, FFABS(sysErr[i]));
115329f1
 
36fa9ef3
     for (i = 0; i < 64; i++) {
         if (i % 8 == 0)
             printf("\n");
         printf("%7d ", (int) sysErr[i]);
de6d9b64
     }
86748dbc
     printf("\n");
115329f1
 
dbf396d4
     omse = (double) err2 / NB_ITS / 64;
     ome  = (double) err_sum / NB_ITS / 64;
 
     spec_err = is_idct && (err_inf > 1 || omse > 0.02 || fabs(ome) > 0.0015);
 
3d5971d9
     printf("%s %s: max_err=%d omse=%0.8f ome=%0.8f syserr=%0.8f maxout=%d blockSumErr=%d\n",
cf2b4f88
            is_idct ? "IDCT" : "DCT", dct->name, err_inf,
dbf396d4
            omse, ome, (double) sysErrMax / NB_ITS,
36fa9ef3
            maxout, blockSumErrMax);
e6ff0648
 
dbf396d4
     if (spec_err && !dct->nonspec)
         return 1;
 
7fd2c138
     if (!speed)
dbf396d4
         return 0;
e6ff0648
 
de6d9b64
     /* speed test */
36fa9ef3
 
3e1a7ae4
     init_block(block, test, is_idct, &prng, vals);
ae2e8971
     permute(block1, block, dct->format);
9e1586fc
 
de6d9b64
     ti = gettime();
     it1 = 0;
     do {
36fa9ef3
         for (it = 0; it < NB_ITS_SPEED; it++) {
ae2e8971
             memcpy(block, block1, sizeof(block));
4f905a65
             dct->func(block);
de6d9b64
         }
         it1 += NB_ITS_SPEED;
         ti1 = gettime() - ti;
     } while (ti1 < 1000000);
aadd27cd
     mmx_emms();
de6d9b64
 
cf2b4f88
     printf("%s %s: %0.1f kdct/s\n", is_idct ? "IDCT" : "DCT", dct->name,
36fa9ef3
            (double) it1 * 1000.0 / (double) ti1);
dbf396d4
 
     return 0;
de6d9b64
 }
 
c6727809
 DECLARE_ALIGNED(8, static uint8_t, img_dest)[64];
 DECLARE_ALIGNED(8, static uint8_t, img_dest1)[64];
a46a3ce4
 
504ffed1
 static void idct248_ref(uint8_t *dest, int linesize, int16_t *block)
a46a3ce4
 {
     static int init;
     static double c8[8][8];
     static double c4[4][4];
     double block1[64], block2[64], block3[64];
     double s, sum, v;
     int i, j, k;
 
     if (!init) {
         init = 1;
 
36fa9ef3
         for (i = 0; i < 8; i++) {
a46a3ce4
             sum = 0;
36fa9ef3
             for (j = 0; j < 8; j++) {
                 s = (i == 0) ? sqrt(1.0 / 8.0) : sqrt(1.0 / 4.0);
a46a3ce4
                 c8[i][j] = s * cos(M_PI * i * (j + 0.5) / 8.0);
                 sum += c8[i][j] * c8[i][j];
             }
         }
115329f1
 
36fa9ef3
         for (i = 0; i < 4; i++) {
a46a3ce4
             sum = 0;
36fa9ef3
             for (j = 0; j < 4; j++) {
                 s = (i == 0) ? sqrt(1.0 / 4.0) : sqrt(1.0 / 2.0);
a46a3ce4
                 c4[i][j] = s * cos(M_PI * i * (j + 0.5) / 4.0);
                 sum += c4[i][j] * c4[i][j];
             }
         }
     }
 
     /* butterfly */
652f0197
     s = 0.5 * sqrt(2.0);
36fa9ef3
     for (i = 0; i < 4; i++) {
         for (j = 0; j < 8; j++) {
             block1[8 * (2 * i) + j] =
                 (block[8 * (2 * i) + j] + block[8 * (2 * i + 1) + j]) * s;
             block1[8 * (2 * i + 1) + j] =
                 (block[8 * (2 * i) + j] - block[8 * (2 * i + 1) + j]) * s;
a46a3ce4
         }
     }
 
     /* idct8 on lines */
36fa9ef3
     for (i = 0; i < 8; i++) {
         for (j = 0; j < 8; j++) {
a46a3ce4
             sum = 0;
36fa9ef3
             for (k = 0; k < 8; k++)
                 sum += c8[k][j] * block1[8 * i + k];
             block2[8 * i + j] = sum;
a46a3ce4
         }
     }
 
     /* idct4 */
36fa9ef3
     for (i = 0; i < 8; i++) {
         for (j = 0; j < 4; j++) {
a46a3ce4
             /* top */
             sum = 0;
36fa9ef3
             for (k = 0; k < 4; k++)
                 sum += c4[k][j] * block2[8 * (2 * k) + i];
             block3[8 * (2 * j) + i] = sum;
a46a3ce4
 
             /* bottom */
             sum = 0;
36fa9ef3
             for (k = 0; k < 4; k++)
                 sum += c4[k][j] * block2[8 * (2 * k + 1) + i];
             block3[8 * (2 * j + 1) + i] = sum;
a46a3ce4
         }
     }
 
     /* clamp and store the result */
36fa9ef3
     for (i = 0; i < 8; i++) {
         for (j = 0; j < 8; j++) {
             v = block3[8 * i + j];
             if      (v < 0)   v = 0;
             else if (v > 255) v = 255;
             dest[i * linesize + j] = (int) rint(v);
a46a3ce4
         }
     }
 }
 
504ffed1
 static void idct248_error(const char *name,
36fa9ef3
                           void (*idct248_put)(uint8_t *dest, int line_size,
7fd2c138
                                               int16_t *block),
                           int speed)
a46a3ce4
 {
     int it, i, it1, ti, ti1, err_max, v;
64bde197
     AVLFG prng;
294eaa26
 
64bde197
     av_lfg_init(&prng, 1);
115329f1
 
a46a3ce4
     /* just one test to see if code is correct (precision is less
        important here) */
     err_max = 0;
36fa9ef3
     for (it = 0; it < NB_ITS; it++) {
652f0197
         /* XXX: use forward transform to generate values */
36fa9ef3
         for (i = 0; i < 64; i++)
64bde197
             block1[i] = av_lfg_get(&prng) % 256 - 128;
652f0197
         block1[0] += 1024;
 
36fa9ef3
         for (i = 0; i < 64; i++)
             block[i] = block1[i];
a46a3ce4
         idct248_ref(img_dest1, 8, block);
115329f1
 
36fa9ef3
         for (i = 0; i < 64; i++)
             block[i] = block1[i];
652f0197
         idct248_put(img_dest, 8, block);
115329f1
 
36fa9ef3
         for (i = 0; i < 64; i++) {
             v = abs((int) img_dest[i] - (int) img_dest1[i]);
652f0197
             if (v == 255)
                 printf("%d %d\n", img_dest[i], img_dest1[i]);
             if (v > err_max)
                 err_max = v;
         }
a46a3ce4
 #if 0
         printf("ref=\n");
         for(i=0;i<8;i++) {
             int j;
             for(j=0;j<8;j++) {
                 printf(" %3d", img_dest1[i*8+j]);
             }
             printf("\n");
         }
115329f1
 
a46a3ce4
         printf("out=\n");
         for(i=0;i<8;i++) {
             int j;
             for(j=0;j<8;j++) {
                 printf(" %3d", img_dest[i*8+j]);
             }
             printf("\n");
         }
 #endif
     }
36fa9ef3
     printf("%s %s: err_inf=%d\n", 1 ? "IDCT248" : "DCT248", name, err_max);
a46a3ce4
 
7fd2c138
     if (!speed)
         return;
a46a3ce4
 
     ti = gettime();
     it1 = 0;
     do {
36fa9ef3
         for (it = 0; it < NB_ITS_SPEED; it++) {
             for (i = 0; i < 64; i++)
                 block[i] = block1[i];
a46a3ce4
             idct248_put(img_dest, 8, block);
         }
         it1 += NB_ITS_SPEED;
         ti1 = gettime() - ti;
     } while (ti1 < 1000000);
aadd27cd
     mmx_emms();
a46a3ce4
 
36fa9ef3
     printf("%s %s: %0.1f kdct/s\n", 1 ? "IDCT248" : "DCT248", name,
            (double) it1 * 1000.0 / (double) ti1);
a46a3ce4
 }
 
504ffed1
 static void help(void)
9e1586fc
 {
db27bef7
     printf("dct-test [-i] [<test-number>] [<bits>]\n"
86748dbc
            "test-number 0 -> test with random matrixes\n"
            "            1 -> test with random sparse matrixes\n"
            "            2 -> do 3. test from mpeg4 std\n"
db27bef7
            "bits        Number of time domain bits to use, 8 is default\n"
a46a3ce4
            "-i          test IDCT implementations\n"
7fd2c138
            "-4          test IDCT248 implementations\n"
            "-t          speed test\n");
9e1586fc
 }
 
de6d9b64
 int main(int argc, char **argv)
 {
a46a3ce4
     int test_idct = 0, test_248_dct = 0;
36fa9ef3
     int c, i;
     int test = 1;
7fd2c138
     int speed = 0;
dbf396d4
     int err = 0;
007d352c
     int bits=8;
36fa9ef3
 
c6c98d08
     cpu_flags = av_get_cpu_flags();
9e1586fc
 
0de74546
     ff_ref_dct_init();
9e1586fc
     idct_mmx_init();
f67a10cd
 
36fa9ef3
     for (i = 0; i < 256; i++)
         cropTbl[i + MAX_NEG_CROP] = i;
     for (i = 0; i < MAX_NEG_CROP; i++) {
486497e0
         cropTbl[i] = 0;
         cropTbl[i + MAX_NEG_CROP + 256] = 255;
86748dbc
     }
115329f1
 
36fa9ef3
     for (;;) {
7fd2c138
         c = getopt(argc, argv, "ih4t");
9e1586fc
         if (c == -1)
             break;
36fa9ef3
         switch (c) {
9e1586fc
         case 'i':
             test_idct = 1;
             break;
a46a3ce4
         case '4':
             test_248_dct = 1;
             break;
7fd2c138
         case 't':
             speed = 1;
             break;
36fa9ef3
         default:
9e1586fc
         case 'h':
             help();
c6bdc908
             return 0;
9e1586fc
         }
     }
115329f1
 
36fa9ef3
     if (optind < argc)
         test = atoi(argv[optind]);
007d352c
     if(optind+1 < argc) bits= atoi(argv[optind+1]);
115329f1
 
9e1586fc
     printf("ffmpeg DCT/IDCT test\n");
 
a46a3ce4
     if (test_248_dct) {
7fd2c138
         idct248_error("SIMPLE-C", ff_simple_idct248_put, speed);
9e1586fc
     } else {
4b357756
         const struct algo *algos = test_idct ? idct_tab : fdct_tab;
36fa9ef3
         for (i = 0; algos[i].name; i++)
4b357756
             if (!(~cpu_flags & algos[i].mm_support)) {
5d4fd1d1
                 err |= dct_error(&algos[i], test, test_idct, speed, bits);
36fa9ef3
             }
9e1586fc
     }
dbf396d4
 
     return err;
de6d9b64
 }