get rid of the useless DCT_ERROR() macro

patch by Alexander Strange %astrange A ithinksw P com%

Originally committed as revision 12627 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Alexander Strange 2008-03-30 10:28:03 +00:00 committed by Guillaume Poirier
parent 6e330816d4
commit 1a7ee380c5
1 changed files with 18 additions and 21 deletions

View File

@ -82,41 +82,38 @@ struct algo {
#define FAAN_SCALE NO_PERM #define FAAN_SCALE NO_PERM
#endif #endif
#define DCT_ERROR(name,is_idct,func,ref,form) {name,is_idct,func,ref,form}
struct algo algos[] = { struct algo algos[] = {
DCT_ERROR( "REF-DBL", 0, fdct, fdct, NO_PERM), {"REF-DBL", 0, fdct, fdct, NO_PERM},
DCT_ERROR("FAAN", 0, ff_faandct, fdct, FAAN_SCALE), {"FAAN", 0, ff_faandct, fdct, FAAN_SCALE},
DCT_ERROR("FAANI", 1, ff_faanidct, idct, NO_PERM), {"FAANI", 1, ff_faanidct, idct, NO_PERM},
DCT_ERROR("IJG-AAN-INT", 0, fdct_ifast, fdct, SCALE_PERM), {"IJG-AAN-INT", 0, fdct_ifast, fdct, SCALE_PERM},
DCT_ERROR("IJG-LLM-INT", 0, ff_jpeg_fdct_islow, fdct, NO_PERM), {"IJG-LLM-INT", 0, ff_jpeg_fdct_islow, fdct, NO_PERM},
DCT_ERROR("REF-DBL", 1, idct, idct, NO_PERM), {"REF-DBL", 1, idct, idct, NO_PERM},
DCT_ERROR("INT", 1, j_rev_dct, idct, MMX_PERM), {"INT", 1, j_rev_dct, idct, MMX_PERM},
DCT_ERROR("SIMPLE-C", 1, ff_simple_idct, idct, NO_PERM), {"SIMPLE-C", 1, ff_simple_idct, idct, NO_PERM},
#ifdef HAVE_MMX #ifdef HAVE_MMX
DCT_ERROR("MMX", 0, ff_fdct_mmx, fdct, NO_PERM), {"MMX", 0, ff_fdct_mmx, fdct, NO_PERM},
#ifdef HAVE_MMX2 #ifdef HAVE_MMX2
DCT_ERROR("MMX2", 0, ff_fdct_mmx2, fdct, NO_PERM), {"MMX2", 0, ff_fdct_mmx2, fdct, NO_PERM},
#endif #endif
#ifdef CONFIG_GPL #ifdef CONFIG_GPL
DCT_ERROR("LIBMPEG2-MMX", 1, ff_mmx_idct, idct, MMX_PERM), {"LIBMPEG2-MMX", 1, ff_mmx_idct, idct, MMX_PERM},
DCT_ERROR("LIBMPEG2-MMXEXT", 1, ff_mmxext_idct, idct, MMX_PERM), {"LIBMPEG2-MMXEXT", 1, ff_mmxext_idct, idct, MMX_PERM},
#endif #endif
DCT_ERROR("SIMPLE-MMX", 1, ff_simple_idct_mmx, idct, MMX_SIMPLE_PERM), {"SIMPLE-MMX", 1, ff_simple_idct_mmx, idct, MMX_SIMPLE_PERM},
DCT_ERROR("XVID-MMX", 1, ff_idct_xvid_mmx, idct, NO_PERM), {"XVID-MMX", 1, ff_idct_xvid_mmx, idct, NO_PERM},
DCT_ERROR("XVID-MMX2", 1, ff_idct_xvid_mmx2, idct, NO_PERM), {"XVID-MMX2", 1, ff_idct_xvid_mmx2, idct, NO_PERM},
#endif #endif
#ifdef HAVE_ALTIVEC #ifdef HAVE_ALTIVEC
DCT_ERROR("altivecfdct", 0, fdct_altivec, fdct, NO_PERM), {"altivecfdct", 0, fdct_altivec, fdct, NO_PERM},
#endif #endif
#ifdef ARCH_BFIN #ifdef ARCH_BFIN
DCT_ERROR("BFINfdct", 0, ff_bfin_fdct, fdct, NO_PERM), {"BFINfdct", 0, ff_bfin_fdct, fdct, NO_PERM},
DCT_ERROR("BFINidct", 1, ff_bfin_idct, idct, NO_PERM), {"BFINidct", 1, ff_bfin_idct, idct, NO_PERM},
#endif #endif
{ 0 } { 0 }