2006-09-10 14:02:42 +00:00
|
|
|
/*
|
|
|
|
* (c) 2001 Fabrice Bellard
|
2007-03-31 17:24:09 +00:00
|
|
|
* 2007 Marc Hoffman <marc.hoffman@analog.com>
|
2006-09-10 14:02:42 +00:00
|
|
|
*
|
2006-10-07 15:30:46 +00:00
|
|
|
* This file is part of FFmpeg.
|
|
|
|
*
|
|
|
|
* FFmpeg is free software; you can redistribute it and/or
|
2006-09-10 14:02:42 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2006-10-07 15:30:46 +00:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2006-09-10 14:02:42 +00:00
|
|
|
*
|
2006-10-07 15:30:46 +00:00
|
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
2006-09-10 14:02:42 +00:00
|
|
|
* 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
|
2006-10-07 15:30:46 +00:00
|
|
|
* License along with FFmpeg; if not, write to the Free Software
|
2006-09-10 14:02:42 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
2003-03-06 11:32:04 +00:00
|
|
|
/**
|
2009-02-01 02:00:19 +00:00
|
|
|
* @file libavcodec/dct-test.c
|
2009-02-01 15:52:01 +00:00
|
|
|
* DCT test (c) 2001 Fabrice Bellard
|
2003-03-06 11:32:04 +00:00
|
|
|
* Started from sample code by Juan J. Sierralta P.
|
|
|
|
*/
|
|
|
|
|
2001-07-22 14:18:56 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <unistd.h>
|
2007-06-09 17:52:16 +00:00
|
|
|
#include <math.h>
|
2001-07-22 14:18:56 +00:00
|
|
|
|
2008-06-24 20:15:31 +00:00
|
|
|
#include "libavutil/common.h"
|
2009-03-20 11:48:27 +00:00
|
|
|
#include "libavutil/lfg.h"
|
2001-07-22 14:18:56 +00:00
|
|
|
|
2002-09-01 09:33:05 +00:00
|
|
|
#include "simple_idct.h"
|
2008-11-28 00:32:24 +00:00
|
|
|
#include "aandcttab.h"
|
2003-10-22 18:26:38 +00:00
|
|
|
#include "faandct.h"
|
2008-02-26 14:59:11 +00:00
|
|
|
#include "faanidct.h"
|
2008-12-22 09:12:42 +00:00
|
|
|
#include "x86/idct_xvid.h"
|
2001-08-07 22:42:45 +00:00
|
|
|
|
2005-09-10 23:00:13 +00:00
|
|
|
#undef printf
|
|
|
|
|
|
|
|
void *fast_memcpy(void *a, const void *b, size_t c){return memcpy(a,b,c);};
|
|
|
|
|
2001-08-07 22:42:45 +00:00
|
|
|
/* reference fdct/idct */
|
2009-03-31 08:55:22 +00:00
|
|
|
void ff_ref_fdct(DCTELEM *block);
|
|
|
|
void ff_ref_idct(DCTELEM *block);
|
|
|
|
void ff_ref_dct_init(void);
|
2001-07-22 14:18:56 +00:00
|
|
|
|
2008-12-03 15:23:30 +00:00
|
|
|
void ff_mmx_idct(DCTELEM *data);
|
|
|
|
void ff_mmxext_idct(DCTELEM *data);
|
2001-08-07 22:42:45 +00:00
|
|
|
|
2008-12-03 15:23:30 +00:00
|
|
|
void odivx_idct_c(short *block);
|
2002-09-01 09:33:05 +00:00
|
|
|
|
2007-03-31 17:24:09 +00:00
|
|
|
// BFIN
|
2008-12-03 15:23:30 +00:00
|
|
|
void ff_bfin_idct(DCTELEM *block);
|
|
|
|
void ff_bfin_fdct(DCTELEM *block);
|
2007-03-31 17:24:09 +00:00
|
|
|
|
|
|
|
// ALTIVEC
|
2008-12-03 15:23:30 +00:00
|
|
|
void fdct_altivec(DCTELEM *block);
|
|
|
|
//void idct_altivec(DCTELEM *block);?? no routine
|
2007-03-31 17:24:09 +00:00
|
|
|
|
2008-12-16 20:00:07 +00:00
|
|
|
// ARM
|
|
|
|
void j_rev_dct_ARM(DCTELEM *data);
|
|
|
|
void simple_idct_ARM(DCTELEM *data);
|
|
|
|
void simple_idct_armv5te(DCTELEM *data);
|
|
|
|
void ff_simple_idct_armv6(DCTELEM *data);
|
|
|
|
void ff_simple_idct_neon(DCTELEM *data);
|
2007-03-31 17:24:09 +00:00
|
|
|
|
2009-01-18 05:52:20 +00:00
|
|
|
void ff_simple_idct_axp(DCTELEM *data);
|
|
|
|
|
2007-03-31 17:24:09 +00:00
|
|
|
struct algo {
|
2008-06-24 09:10:30 +00:00
|
|
|
const char *name;
|
2007-03-31 17:24:09 +00:00
|
|
|
enum { FDCT, IDCT } is_idct;
|
|
|
|
void (* func) (DCTELEM *block);
|
|
|
|
void (* ref) (DCTELEM *block);
|
2008-12-16 19:59:50 +00:00
|
|
|
enum formattag { NO_PERM,MMX_PERM, MMX_SIMPLE_PERM, SCALE_PERM, SSE2_PERM, PARTTRANS_PERM } format;
|
2008-03-30 10:29:28 +00:00
|
|
|
int mm_support;
|
2007-03-31 17:24:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#ifndef FAAN_POSTSCALE
|
|
|
|
#define FAAN_SCALE SCALE_PERM
|
|
|
|
#else
|
|
|
|
#define FAAN_SCALE NO_PERM
|
|
|
|
#endif
|
|
|
|
|
2008-06-28 10:42:31 +00:00
|
|
|
static int cpu_flags;
|
|
|
|
|
2007-03-31 17:24:09 +00:00
|
|
|
struct algo algos[] = {
|
2009-03-31 08:55:22 +00:00
|
|
|
{"REF-DBL", 0, ff_ref_fdct, ff_ref_fdct, NO_PERM},
|
|
|
|
{"FAAN", 0, ff_faandct, ff_ref_fdct, FAAN_SCALE},
|
|
|
|
{"FAANI", 1, ff_faanidct, ff_ref_idct, NO_PERM},
|
|
|
|
{"IJG-AAN-INT", 0, fdct_ifast, ff_ref_fdct, SCALE_PERM},
|
|
|
|
{"IJG-LLM-INT", 0, ff_jpeg_fdct_islow, ff_ref_fdct, NO_PERM},
|
|
|
|
{"REF-DBL", 1, ff_ref_idct, ff_ref_idct, NO_PERM},
|
|
|
|
{"INT", 1, j_rev_dct, ff_ref_idct, MMX_PERM},
|
|
|
|
{"SIMPLE-C", 1, ff_simple_idct, ff_ref_idct, NO_PERM},
|
2007-03-31 17:24:09 +00:00
|
|
|
|
2009-01-13 23:44:16 +00:00
|
|
|
#if HAVE_MMX
|
2009-03-31 08:55:22 +00:00
|
|
|
{"MMX", 0, ff_fdct_mmx, ff_ref_fdct, NO_PERM, FF_MM_MMX},
|
2009-01-13 23:44:16 +00:00
|
|
|
#if HAVE_MMX2
|
2009-04-11 18:12:23 +00:00
|
|
|
{"MMX2", 0, ff_fdct_mmx2, ff_ref_fdct, NO_PERM, FF_MM_MMX2},
|
2009-03-31 08:55:22 +00:00
|
|
|
{"SSE2", 0, ff_fdct_sse2, ff_ref_fdct, NO_PERM, FF_MM_SSE2},
|
2007-06-07 15:59:15 +00:00
|
|
|
#endif
|
2007-03-31 17:24:09 +00:00
|
|
|
|
2009-01-13 23:44:16 +00:00
|
|
|
#if CONFIG_GPL
|
2009-03-31 08:55:22 +00:00
|
|
|
{"LIBMPEG2-MMX", 1, ff_mmx_idct, ff_ref_idct, MMX_PERM, FF_MM_MMX},
|
2009-04-11 18:12:23 +00:00
|
|
|
{"LIBMPEG2-MMX2", 1, ff_mmxext_idct, ff_ref_idct, MMX_PERM, FF_MM_MMX2},
|
2007-06-07 15:54:49 +00:00
|
|
|
#endif
|
2009-03-31 08:55:22 +00:00
|
|
|
{"SIMPLE-MMX", 1, ff_simple_idct_mmx, ff_ref_idct, MMX_SIMPLE_PERM, FF_MM_MMX},
|
|
|
|
{"XVID-MMX", 1, ff_idct_xvid_mmx, ff_ref_idct, NO_PERM, FF_MM_MMX},
|
2009-04-11 18:12:23 +00:00
|
|
|
{"XVID-MMX2", 1, ff_idct_xvid_mmx2, ff_ref_idct, NO_PERM, FF_MM_MMX2},
|
2009-03-31 08:55:22 +00:00
|
|
|
{"XVID-SSE2", 1, ff_idct_xvid_sse2, ff_ref_idct, SSE2_PERM, FF_MM_SSE2},
|
2007-03-31 17:24:09 +00:00
|
|
|
#endif
|
|
|
|
|
2009-01-13 23:44:16 +00:00
|
|
|
#if HAVE_ALTIVEC
|
2009-03-31 08:55:22 +00:00
|
|
|
{"altivecfdct", 0, fdct_altivec, ff_ref_fdct, NO_PERM, FF_MM_ALTIVEC},
|
2007-03-31 17:24:09 +00:00
|
|
|
#endif
|
|
|
|
|
2009-01-13 23:44:16 +00:00
|
|
|
#if ARCH_BFIN
|
2009-03-31 08:55:22 +00:00
|
|
|
{"BFINfdct", 0, ff_bfin_fdct, ff_ref_fdct, NO_PERM},
|
|
|
|
{"BFINidct", 1, ff_bfin_idct, ff_ref_idct, NO_PERM},
|
2007-03-31 17:24:09 +00:00
|
|
|
#endif
|
|
|
|
|
2009-01-13 23:44:16 +00:00
|
|
|
#if ARCH_ARM
|
2009-03-31 08:55:22 +00:00
|
|
|
{"SIMPLE-ARM", 1, simple_idct_ARM, ff_ref_idct, NO_PERM },
|
|
|
|
{"INT-ARM", 1, j_rev_dct_ARM, ff_ref_idct, MMX_PERM },
|
2009-01-13 23:44:16 +00:00
|
|
|
#if HAVE_ARMV5TE
|
2009-03-31 08:55:22 +00:00
|
|
|
{"SIMPLE-ARMV5TE", 1, simple_idct_armv5te, ff_ref_idct, NO_PERM },
|
2008-12-16 20:00:07 +00:00
|
|
|
#endif
|
2009-01-13 23:44:16 +00:00
|
|
|
#if HAVE_ARMV6
|
2009-03-31 08:55:22 +00:00
|
|
|
{"SIMPLE-ARMV6", 1, ff_simple_idct_armv6, ff_ref_idct, MMX_PERM },
|
2008-12-16 20:00:07 +00:00
|
|
|
#endif
|
2009-01-13 23:44:16 +00:00
|
|
|
#if HAVE_NEON
|
2009-03-31 08:55:22 +00:00
|
|
|
{"SIMPLE-NEON", 1, ff_simple_idct_neon, ff_ref_idct, PARTTRANS_PERM },
|
2008-12-16 20:00:07 +00:00
|
|
|
#endif
|
2008-12-17 00:54:54 +00:00
|
|
|
#endif /* ARCH_ARM */
|
2008-12-16 20:00:07 +00:00
|
|
|
|
2009-01-18 05:52:20 +00:00
|
|
|
#if ARCH_ALPHA
|
2009-03-31 08:55:22 +00:00
|
|
|
{"SIMPLE-ALPHA", 1, ff_simple_idct_axp, ff_ref_idct, NO_PERM },
|
2009-01-18 05:52:20 +00:00
|
|
|
#endif
|
|
|
|
|
2007-03-31 17:24:09 +00:00
|
|
|
{ 0 }
|
|
|
|
};
|
|
|
|
|
2001-07-22 14:18:56 +00:00
|
|
|
#define AANSCALE_BITS 12
|
|
|
|
|
2006-11-14 03:18:09 +00:00
|
|
|
uint8_t cropTbl[256 + 2 * MAX_NEG_CROP];
|
2002-09-01 09:33:05 +00:00
|
|
|
|
2009-03-31 09:32:59 +00:00
|
|
|
static int64_t gettime(void)
|
2001-07-22 14:18:56 +00:00
|
|
|
{
|
|
|
|
struct timeval tv;
|
|
|
|
gettimeofday(&tv,NULL);
|
2003-02-11 16:35:48 +00:00
|
|
|
return (int64_t)tv.tv_sec * 1000000 + tv.tv_usec;
|
2001-07-22 14:18:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#define NB_ITS 20000
|
|
|
|
#define NB_ITS_SPEED 50000
|
|
|
|
|
2001-08-07 22:42:45 +00:00
|
|
|
static short idct_mmx_perm[64];
|
|
|
|
|
2002-09-01 09:33:05 +00:00
|
|
|
static short idct_simple_mmx_perm[64]={
|
2005-12-22 01:10:11 +00:00
|
|
|
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,
|
2002-09-01 09:33:05 +00:00
|
|
|
};
|
|
|
|
|
2008-04-16 01:54:16 +00:00
|
|
|
static const uint8_t idct_sse2_row_perm[8] = {0, 4, 1, 5, 2, 6, 3, 7};
|
|
|
|
|
2009-03-31 09:32:59 +00:00
|
|
|
static void idct_mmx_init(void)
|
2001-08-07 22:42:45 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
/* the mmx/mmxext idct uses a reordered input, so we patch scan tables */
|
|
|
|
for (i = 0; i < 64; i++) {
|
2005-12-22 01:10:11 +00:00
|
|
|
idct_mmx_perm[i] = (i & 0x38) | ((i & 6) >> 1) | ((i & 1) << 2);
|
|
|
|
// idct_simple_mmx_perm[i] = simple_block_permute_op(i);
|
2001-08-07 22:42:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-06-04 23:25:09 +00:00
|
|
|
DECLARE_ALIGNED(16, static DCTELEM, block[64]);
|
|
|
|
DECLARE_ALIGNED(8, static DCTELEM, block1[64]);
|
|
|
|
DECLARE_ALIGNED(8, static DCTELEM, block_org[64]);
|
2001-08-07 22:42:45 +00:00
|
|
|
|
2008-06-28 10:42:31 +00:00
|
|
|
static inline void mmx_emms(void)
|
|
|
|
{
|
2009-01-13 23:44:16 +00:00
|
|
|
#if HAVE_MMX
|
2008-11-03 18:08:00 +00:00
|
|
|
if (cpu_flags & FF_MM_MMX)
|
2008-10-16 13:34:09 +00:00
|
|
|
__asm__ volatile ("emms\n\t");
|
2008-06-28 10:42:31 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2009-03-31 09:32:59 +00:00
|
|
|
static void dct_error(const char *name, int is_idct,
|
2001-08-07 22:42:45 +00:00
|
|
|
void (*fdct_func)(DCTELEM *block),
|
2007-03-31 17:24:09 +00:00
|
|
|
void (*fdct_ref)(DCTELEM *block), int form, int test)
|
2001-07-22 14:18:56 +00:00
|
|
|
{
|
|
|
|
int it, i, scale;
|
|
|
|
int err_inf, v;
|
2003-02-11 16:35:48 +00:00
|
|
|
int64_t err2, ti, ti1, it1;
|
|
|
|
int64_t sysErr[64], sysErrMax=0;
|
2002-09-01 09:33:05 +00:00
|
|
|
int maxout=0;
|
|
|
|
int blockSumErrMax=0, blockSumErr;
|
2009-04-10 17:23:38 +00:00
|
|
|
AVLFG prng;
|
2001-07-22 14:18:56 +00:00
|
|
|
|
2009-04-10 17:23:38 +00:00
|
|
|
av_lfg_init(&prng, 1);
|
2001-07-22 14:18:56 +00:00
|
|
|
|
|
|
|
err_inf = 0;
|
|
|
|
err2 = 0;
|
2002-09-01 09:33:05 +00:00
|
|
|
for(i=0; i<64; i++) sysErr[i]=0;
|
2001-07-22 14:18:56 +00:00
|
|
|
for(it=0;it<NB_ITS;it++) {
|
2002-09-01 09:33:05 +00:00
|
|
|
for(i=0;i<64;i++)
|
|
|
|
block1[i] = 0;
|
|
|
|
switch(test){
|
2005-12-17 18:14:38 +00:00
|
|
|
case 0:
|
2002-09-01 09:33:05 +00:00
|
|
|
for(i=0;i<64;i++)
|
2009-04-10 17:23:38 +00:00
|
|
|
block1[i] = (av_lfg_get(&prng) % 512) -256;
|
2002-09-01 16:52:33 +00:00
|
|
|
if (is_idct){
|
2009-03-31 08:55:22 +00:00
|
|
|
ff_ref_fdct(block1);
|
2002-09-01 16:52:33 +00:00
|
|
|
|
|
|
|
for(i=0;i<64;i++)
|
|
|
|
block1[i]>>=3;
|
|
|
|
}
|
2002-09-01 09:33:05 +00:00
|
|
|
break;
|
|
|
|
case 1:{
|
2009-04-10 17:23:38 +00:00
|
|
|
int num = av_lfg_get(&prng) % 10 + 1;
|
2002-09-01 09:33:05 +00:00
|
|
|
for(i=0;i<num;i++)
|
2009-04-10 17:23:38 +00:00
|
|
|
block1[av_lfg_get(&prng) % 64] = av_lfg_get(&prng) % 512 -256;
|
2002-09-01 09:33:05 +00:00
|
|
|
}break;
|
|
|
|
case 2:
|
2009-04-10 17:23:38 +00:00
|
|
|
block1[0] = av_lfg_get(&prng) % 4096 - 2048;
|
2002-09-01 09:33:05 +00:00
|
|
|
block1[63]= (block1[0]&1)^1;
|
|
|
|
break;
|
|
|
|
}
|
2001-08-07 22:42:45 +00:00
|
|
|
|
2002-09-01 09:33:05 +00:00
|
|
|
#if 0 // simulate mismatch control
|
|
|
|
{ int sum=0;
|
|
|
|
for(i=0;i<64;i++)
|
|
|
|
sum+=block1[i];
|
|
|
|
|
2005-12-17 18:14:38 +00:00
|
|
|
if((sum&1)==0) block1[63]^=1;
|
2002-09-01 09:33:05 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
for(i=0; i<64; i++)
|
|
|
|
block_org[i]= block1[i];
|
2001-08-07 22:42:45 +00:00
|
|
|
|
2007-03-31 17:24:09 +00:00
|
|
|
if (form == MMX_PERM) {
|
2002-09-01 09:33:05 +00:00
|
|
|
for(i=0;i<64;i++)
|
2001-08-07 22:42:45 +00:00
|
|
|
block[idct_mmx_perm[i]] = block1[i];
|
2007-03-31 17:24:09 +00:00
|
|
|
} else if (form == MMX_SIMPLE_PERM) {
|
2002-09-01 09:33:05 +00:00
|
|
|
for(i=0;i<64;i++)
|
|
|
|
block[idct_simple_mmx_perm[i]] = block1[i];
|
|
|
|
|
2008-04-16 01:54:16 +00:00
|
|
|
} else if (form == SSE2_PERM) {
|
|
|
|
for(i=0; i<64; i++)
|
|
|
|
block[(i&0x38) | idct_sse2_row_perm[i&7]] = block1[i];
|
2008-12-16 19:59:50 +00:00
|
|
|
} else if (form == PARTTRANS_PERM) {
|
|
|
|
for(i=0; i<64; i++)
|
|
|
|
block[(i&0x24) | ((i&3)<<3) | ((i>>3)&3)] = block1[i];
|
2005-12-22 01:10:11 +00:00
|
|
|
} else {
|
2002-09-01 09:33:05 +00:00
|
|
|
for(i=0; i<64; i++)
|
|
|
|
block[i]= block1[i];
|
2001-08-07 22:42:45 +00:00
|
|
|
}
|
2002-09-01 09:33:05 +00:00
|
|
|
#if 0 // simulate mismatch control for tested IDCT but not the ref
|
|
|
|
{ int sum=0;
|
|
|
|
for(i=0;i<64;i++)
|
|
|
|
sum+=block[i];
|
|
|
|
|
2005-12-17 18:14:38 +00:00
|
|
|
if((sum&1)==0) block[63]^=1;
|
2002-09-01 09:33:05 +00:00
|
|
|
}
|
|
|
|
#endif
|
2001-08-07 22:42:45 +00:00
|
|
|
|
2001-07-22 14:18:56 +00:00
|
|
|
fdct_func(block);
|
2008-06-28 10:42:31 +00:00
|
|
|
mmx_emms();
|
2001-08-07 22:42:45 +00:00
|
|
|
|
2007-03-31 17:24:09 +00:00
|
|
|
if (form == SCALE_PERM) {
|
2001-07-22 14:18:56 +00:00
|
|
|
for(i=0; i<64; i++) {
|
2008-11-28 00:32:24 +00:00
|
|
|
scale = 8*(1 << (AANSCALE_BITS + 11)) / ff_aanscales[i];
|
2002-09-01 09:33:05 +00:00
|
|
|
block[i] = (block[i] * scale /*+ (1<<(AANSCALE_BITS-1))*/) >> AANSCALE_BITS;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-08-07 22:42:45 +00:00
|
|
|
fdct_ref(block1);
|
2001-07-22 14:18:56 +00:00
|
|
|
|
2002-09-01 09:33:05 +00:00
|
|
|
blockSumErr=0;
|
2001-07-22 14:18:56 +00:00
|
|
|
for(i=0;i<64;i++) {
|
|
|
|
v = abs(block[i] - block1[i]);
|
|
|
|
if (v > err_inf)
|
|
|
|
err_inf = v;
|
|
|
|
err2 += v * v;
|
2005-12-22 01:10:11 +00:00
|
|
|
sysErr[i] += block[i] - block1[i];
|
|
|
|
blockSumErr += v;
|
|
|
|
if( abs(block[i])>maxout) maxout=abs(block[i]);
|
2001-07-22 14:18:56 +00:00
|
|
|
}
|
2002-09-01 09:33:05 +00:00
|
|
|
if(blockSumErrMax < blockSumErr) blockSumErrMax= blockSumErr;
|
|
|
|
#if 0 // print different matrix pairs
|
|
|
|
if(blockSumErr){
|
|
|
|
printf("\n");
|
|
|
|
for(i=0; i<64; i++){
|
|
|
|
if((i&7)==0) printf("\n");
|
|
|
|
printf("%4d ", block_org[i]);
|
|
|
|
}
|
|
|
|
for(i=0; i<64; i++){
|
|
|
|
if((i&7)==0) printf("\n");
|
|
|
|
printf("%4d ", block[i] - block1[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
2008-06-24 20:15:31 +00:00
|
|
|
for(i=0; i<64; i++) sysErrMax= FFMAX(sysErrMax, FFABS(sysErr[i]));
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2002-09-01 09:33:05 +00:00
|
|
|
#if 1 // dump systematic errors
|
|
|
|
for(i=0; i<64; i++){
|
2005-12-22 01:10:11 +00:00
|
|
|
if(i%8==0) printf("\n");
|
2009-03-19 09:53:50 +00:00
|
|
|
printf("%7d ", (int)sysErr[i]);
|
2001-07-22 14:18:56 +00:00
|
|
|
}
|
2002-09-01 09:33:05 +00:00
|
|
|
printf("\n");
|
|
|
|
#endif
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2002-09-01 09:33:05 +00:00
|
|
|
printf("%s %s: err_inf=%d err2=%0.8f syserr=%0.8f maxout=%d blockSumErr=%d\n",
|
2001-08-07 22:42:45 +00:00
|
|
|
is_idct ? "IDCT" : "DCT",
|
2002-09-01 09:33:05 +00:00
|
|
|
name, err_inf, (double)err2 / NB_ITS / 64.0, (double)sysErrMax / NB_ITS, maxout, blockSumErrMax);
|
|
|
|
#if 1 //Speed test
|
2001-07-22 14:18:56 +00:00
|
|
|
/* speed test */
|
2002-09-01 09:33:05 +00:00
|
|
|
for(i=0;i<64;i++)
|
|
|
|
block1[i] = 0;
|
|
|
|
switch(test){
|
2005-12-17 18:14:38 +00:00
|
|
|
case 0:
|
2002-09-01 09:33:05 +00:00
|
|
|
for(i=0;i<64;i++)
|
2009-04-10 17:23:38 +00:00
|
|
|
block1[i] = av_lfg_get(&prng) % 512 -256;
|
2002-09-01 16:52:33 +00:00
|
|
|
if (is_idct){
|
2009-03-31 08:55:22 +00:00
|
|
|
ff_ref_fdct(block1);
|
2002-09-01 16:52:33 +00:00
|
|
|
|
|
|
|
for(i=0;i<64;i++)
|
|
|
|
block1[i]>>=3;
|
|
|
|
}
|
2002-09-01 09:33:05 +00:00
|
|
|
break;
|
|
|
|
case 1:{
|
|
|
|
case 2:
|
2009-04-10 17:23:38 +00:00
|
|
|
block1[0] = av_lfg_get(&prng) % 512 -256;
|
|
|
|
block1[1] = av_lfg_get(&prng) % 512 -256;
|
|
|
|
block1[2] = av_lfg_get(&prng) % 512 -256;
|
|
|
|
block1[3] = av_lfg_get(&prng) % 512 -256;
|
2002-09-01 09:33:05 +00:00
|
|
|
}break;
|
|
|
|
}
|
2001-07-22 14:18:56 +00:00
|
|
|
|
2007-03-31 17:24:09 +00:00
|
|
|
if (form == MMX_PERM) {
|
2002-09-01 09:33:05 +00:00
|
|
|
for(i=0;i<64;i++)
|
2001-08-07 22:42:45 +00:00
|
|
|
block[idct_mmx_perm[i]] = block1[i];
|
2007-03-31 17:24:09 +00:00
|
|
|
} else if(form == MMX_SIMPLE_PERM) {
|
2002-09-01 09:33:05 +00:00
|
|
|
for(i=0;i<64;i++)
|
|
|
|
block[idct_simple_mmx_perm[i]] = block1[i];
|
|
|
|
} else {
|
|
|
|
for(i=0; i<64; i++)
|
|
|
|
block[i]= block1[i];
|
2001-08-07 22:42:45 +00:00
|
|
|
}
|
|
|
|
|
2001-07-22 14:18:56 +00:00
|
|
|
ti = gettime();
|
|
|
|
it1 = 0;
|
|
|
|
do {
|
|
|
|
for(it=0;it<NB_ITS_SPEED;it++) {
|
2002-09-01 09:33:05 +00:00
|
|
|
for(i=0; i<64; i++)
|
|
|
|
block[i]= block1[i];
|
|
|
|
// memcpy(block, block1, sizeof(DCTELEM) * 64);
|
2007-06-12 09:29:25 +00:00
|
|
|
// do not memcpy especially not fastmemcpy because it does movntq !!!
|
2001-07-22 14:18:56 +00:00
|
|
|
fdct_func(block);
|
|
|
|
}
|
|
|
|
it1 += NB_ITS_SPEED;
|
|
|
|
ti1 = gettime() - ti;
|
|
|
|
} while (ti1 < 1000000);
|
2008-06-28 10:42:31 +00:00
|
|
|
mmx_emms();
|
2001-07-22 14:18:56 +00:00
|
|
|
|
2002-09-01 09:33:05 +00:00
|
|
|
printf("%s %s: %0.1f kdct/s\n",
|
2001-08-07 22:42:45 +00:00
|
|
|
is_idct ? "IDCT" : "DCT",
|
2001-07-22 14:18:56 +00:00
|
|
|
name, (double)it1 * 1000.0 / (double)ti1);
|
2002-09-01 09:33:05 +00:00
|
|
|
#endif
|
2001-07-22 14:18:56 +00:00
|
|
|
}
|
|
|
|
|
2009-06-04 23:25:09 +00:00
|
|
|
DECLARE_ALIGNED(8, static uint8_t, img_dest[64]);
|
|
|
|
DECLARE_ALIGNED(8, static uint8_t, img_dest1[64]);
|
2002-10-03 19:49:23 +00:00
|
|
|
|
2009-03-31 09:32:59 +00:00
|
|
|
static void idct248_ref(uint8_t *dest, int linesize, int16_t *block)
|
2002-10-03 19:49:23 +00:00
|
|
|
{
|
|
|
|
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;
|
|
|
|
|
|
|
|
for(i=0;i<8;i++) {
|
|
|
|
sum = 0;
|
|
|
|
for(j=0;j<8;j++) {
|
|
|
|
s = (i==0) ? sqrt(1.0/8.0) : sqrt(1.0/4.0);
|
|
|
|
c8[i][j] = s * cos(M_PI * i * (j + 0.5) / 8.0);
|
|
|
|
sum += c8[i][j] * c8[i][j];
|
|
|
|
}
|
|
|
|
}
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2002-10-03 19:49:23 +00:00
|
|
|
for(i=0;i<4;i++) {
|
|
|
|
sum = 0;
|
|
|
|
for(j=0;j<4;j++) {
|
|
|
|
s = (i==0) ? sqrt(1.0/4.0) : sqrt(1.0/2.0);
|
|
|
|
c4[i][j] = s * cos(M_PI * i * (j + 0.5) / 4.0);
|
|
|
|
sum += c4[i][j] * c4[i][j];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* butterfly */
|
2002-10-03 21:03:59 +00:00
|
|
|
s = 0.5 * sqrt(2.0);
|
2002-10-03 19:49:23 +00:00
|
|
|
for(i=0;i<4;i++) {
|
|
|
|
for(j=0;j<8;j++) {
|
2002-10-03 21:03:59 +00:00
|
|
|
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;
|
2002-10-03 19:49:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* idct8 on lines */
|
|
|
|
for(i=0;i<8;i++) {
|
|
|
|
for(j=0;j<8;j++) {
|
|
|
|
sum = 0;
|
|
|
|
for(k=0;k<8;k++)
|
|
|
|
sum += c8[k][j] * block1[8*i+k];
|
|
|
|
block2[8*i+j] = sum;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* idct4 */
|
|
|
|
for(i=0;i<8;i++) {
|
|
|
|
for(j=0;j<4;j++) {
|
|
|
|
/* top */
|
|
|
|
sum = 0;
|
|
|
|
for(k=0;k<4;k++)
|
|
|
|
sum += c4[k][j] * block2[8*(2*k)+i];
|
|
|
|
block3[8*(2*j)+i] = sum;
|
|
|
|
|
|
|
|
/* bottom */
|
|
|
|
sum = 0;
|
|
|
|
for(k=0;k<4;k++)
|
|
|
|
sum += c4[k][j] * block2[8*(2*k+1)+i];
|
|
|
|
block3[8*(2*j+1)+i] = sum;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* clamp and store the result */
|
|
|
|
for(i=0;i<8;i++) {
|
|
|
|
for(j=0;j<8;j++) {
|
2002-10-03 21:03:59 +00:00
|
|
|
v = block3[8*i+j];
|
2002-10-03 19:49:23 +00:00
|
|
|
if (v < 0)
|
|
|
|
v = 0;
|
|
|
|
else if (v > 255)
|
|
|
|
v = 255;
|
|
|
|
dest[i * linesize + j] = (int)rint(v);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-03-31 09:32:59 +00:00
|
|
|
static void idct248_error(const char *name,
|
2003-02-11 16:35:48 +00:00
|
|
|
void (*idct248_put)(uint8_t *dest, int line_size, int16_t *block))
|
2002-10-03 19:49:23 +00:00
|
|
|
{
|
|
|
|
int it, i, it1, ti, ti1, err_max, v;
|
|
|
|
|
2009-04-10 17:23:38 +00:00
|
|
|
AVLFG prng;
|
2009-03-20 11:48:27 +00:00
|
|
|
|
2009-04-10 17:23:38 +00:00
|
|
|
av_lfg_init(&prng, 1);
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2002-10-03 19:49:23 +00:00
|
|
|
/* just one test to see if code is correct (precision is less
|
|
|
|
important here) */
|
|
|
|
err_max = 0;
|
|
|
|
for(it=0;it<NB_ITS;it++) {
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2002-10-03 21:03:59 +00:00
|
|
|
/* XXX: use forward transform to generate values */
|
|
|
|
for(i=0;i<64;i++)
|
2009-04-10 17:23:38 +00:00
|
|
|
block1[i] = av_lfg_get(&prng) % 256 - 128;
|
2002-10-03 21:03:59 +00:00
|
|
|
block1[0] += 1024;
|
|
|
|
|
2002-10-03 19:49:23 +00:00
|
|
|
for(i=0; i<64; i++)
|
|
|
|
block[i]= block1[i];
|
|
|
|
idct248_ref(img_dest1, 8, block);
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2002-10-03 21:03:59 +00:00
|
|
|
for(i=0; i<64; i++)
|
|
|
|
block[i]= block1[i];
|
|
|
|
idct248_put(img_dest, 8, block);
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2002-10-03 21:03:59 +00:00
|
|
|
for(i=0;i<64;i++) {
|
|
|
|
v = abs((int)img_dest[i] - (int)img_dest1[i]);
|
|
|
|
if (v == 255)
|
|
|
|
printf("%d %d\n", img_dest[i], img_dest1[i]);
|
|
|
|
if (v > err_max)
|
|
|
|
err_max = v;
|
|
|
|
}
|
2002-10-03 19:49:23 +00:00
|
|
|
#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");
|
|
|
|
}
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2002-10-03 19:49:23 +00:00
|
|
|
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
|
|
|
|
}
|
|
|
|
printf("%s %s: err_inf=%d\n",
|
|
|
|
1 ? "IDCT248" : "DCT248",
|
|
|
|
name, err_max);
|
|
|
|
|
|
|
|
ti = gettime();
|
|
|
|
it1 = 0;
|
|
|
|
do {
|
|
|
|
for(it=0;it<NB_ITS_SPEED;it++) {
|
|
|
|
for(i=0; i<64; i++)
|
|
|
|
block[i]= block1[i];
|
|
|
|
// memcpy(block, block1, sizeof(DCTELEM) * 64);
|
2007-06-12 09:29:25 +00:00
|
|
|
// do not memcpy especially not fastmemcpy because it does movntq !!!
|
2002-10-03 19:49:23 +00:00
|
|
|
idct248_put(img_dest, 8, block);
|
|
|
|
}
|
|
|
|
it1 += NB_ITS_SPEED;
|
|
|
|
ti1 = gettime() - ti;
|
|
|
|
} while (ti1 < 1000000);
|
2008-06-28 10:42:31 +00:00
|
|
|
mmx_emms();
|
2002-10-03 19:49:23 +00:00
|
|
|
|
|
|
|
printf("%s %s: %0.1f kdct/s\n",
|
|
|
|
1 ? "IDCT248" : "DCT248",
|
|
|
|
name, (double)it1 * 1000.0 / (double)ti1);
|
|
|
|
}
|
|
|
|
|
2009-03-31 09:32:59 +00:00
|
|
|
static void help(void)
|
2001-08-07 22:42:45 +00:00
|
|
|
{
|
2002-09-01 09:33:05 +00:00
|
|
|
printf("dct-test [-i] [<test-number>]\n"
|
|
|
|
"test-number 0 -> test with random matrixes\n"
|
|
|
|
" 1 -> test with random sparse matrixes\n"
|
|
|
|
" 2 -> do 3. test from mpeg4 std\n"
|
2002-10-03 19:49:23 +00:00
|
|
|
"-i test IDCT implementations\n"
|
|
|
|
"-4 test IDCT248 implementations\n");
|
2001-08-07 22:42:45 +00:00
|
|
|
}
|
|
|
|
|
2001-07-22 14:18:56 +00:00
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
2002-10-03 19:49:23 +00:00
|
|
|
int test_idct = 0, test_248_dct = 0;
|
2002-09-01 09:33:05 +00:00
|
|
|
int c,i;
|
|
|
|
int test=1;
|
2008-06-28 10:42:31 +00:00
|
|
|
cpu_flags = mm_support();
|
2001-08-07 22:42:45 +00:00
|
|
|
|
2009-03-31 08:55:22 +00:00
|
|
|
ff_ref_dct_init();
|
2001-08-07 22:42:45 +00:00
|
|
|
idct_mmx_init();
|
2008-06-24 23:51:17 +00:00
|
|
|
|
2006-11-14 03:18:09 +00:00
|
|
|
for(i=0;i<256;i++) cropTbl[i + MAX_NEG_CROP] = i;
|
2002-09-01 09:33:05 +00:00
|
|
|
for(i=0;i<MAX_NEG_CROP;i++) {
|
2006-11-14 03:18:09 +00:00
|
|
|
cropTbl[i] = 0;
|
|
|
|
cropTbl[i + MAX_NEG_CROP + 256] = 255;
|
2002-09-01 09:33:05 +00:00
|
|
|
}
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2001-08-07 22:42:45 +00:00
|
|
|
for(;;) {
|
2002-10-03 19:49:23 +00:00
|
|
|
c = getopt(argc, argv, "ih4");
|
2001-08-07 22:42:45 +00:00
|
|
|
if (c == -1)
|
|
|
|
break;
|
|
|
|
switch(c) {
|
|
|
|
case 'i':
|
|
|
|
test_idct = 1;
|
|
|
|
break;
|
2002-10-03 19:49:23 +00:00
|
|
|
case '4':
|
|
|
|
test_248_dct = 1;
|
|
|
|
break;
|
2002-09-01 09:33:05 +00:00
|
|
|
default :
|
2001-08-07 22:42:45 +00:00
|
|
|
case 'h':
|
|
|
|
help();
|
2007-03-31 17:14:59 +00:00
|
|
|
return 0;
|
2001-08-07 22:42:45 +00:00
|
|
|
}
|
|
|
|
}
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2002-09-01 09:33:05 +00:00
|
|
|
if(optind <argc) test= atoi(argv[optind]);
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2001-08-07 22:42:45 +00:00
|
|
|
printf("ffmpeg DCT/IDCT test\n");
|
|
|
|
|
2002-10-03 19:49:23 +00:00
|
|
|
if (test_248_dct) {
|
2007-12-08 21:21:11 +00:00
|
|
|
idct248_error("SIMPLE-C", ff_simple_idct248_put);
|
2001-08-07 22:42:45 +00:00
|
|
|
} else {
|
2007-03-31 17:24:09 +00:00
|
|
|
for (i=0;algos[i].name;i++)
|
2008-06-25 17:33:55 +00:00
|
|
|
if (algos[i].is_idct == test_idct && !(~cpu_flags & algos[i].mm_support)) {
|
2007-03-31 17:24:09 +00:00
|
|
|
dct_error (algos[i].name, algos[i].is_idct, algos[i].func, algos[i].ref, algos[i].format, test);
|
2002-10-03 19:49:23 +00:00
|
|
|
}
|
2001-08-07 22:42:45 +00:00
|
|
|
}
|
2001-07-22 14:18:56 +00:00
|
|
|
return 0;
|
|
|
|
}
|