[FFmpeg-cvslog] r9243 - trunk/libavcodec/dct-test.c

diego subversion
Thu Jun 7 17:30:54 CEST 2007


Author: diego
Date: Thu Jun  7 17:30:54 2007
New Revision: 9243

Log:
Fix compilation when MMX is disabled.
inspired by a patch by Ronald S. Bultje, rbultje ronald.bitfreak net


Modified:
   trunk/libavcodec/dct-test.c

Modified: trunk/libavcodec/dct-test.c
==============================================================================
--- trunk/libavcodec/dct-test.c	(original)
+++ trunk/libavcodec/dct-test.c	Thu Jun  7 17:30:54 2007
@@ -91,7 +91,7 @@ struct algo algos[] = {
   DCT_ERROR("INT",             1, j_rev_dct,          idct, MMX_PERM),
   DCT_ERROR("SIMPLE-C",        1, simple_idct,        idct, NO_PERM),
 
-#ifdef ARCH_X86
+#ifdef HAVE_MMX
   DCT_ERROR("MMX",             0, ff_fdct_mmx,        fdct, NO_PERM),
   DCT_ERROR("MMX2",            0, ff_fdct_mmx2,       fdct, NO_PERM),
 




More information about the ffmpeg-cvslog mailing list