[MPlayer-cvslog] r28373 - trunk/mp3lib/sr1.c

diego subversion at mplayerhq.hu
Mon Jan 26 10:55:59 CET 2009


Author: diego
Date: Mon Jan 26 10:55:59 2009
New Revision: 28373

Log:
some more HAVE_3DNOW --> HAVE_AMD3DNOW

Modified:
   trunk/mp3lib/sr1.c

Modified: trunk/mp3lib/sr1.c
==============================================================================
--- trunk/mp3lib/sr1.c	Mon Jan 26 10:54:14 2009	(r28372)
+++ trunk/mp3lib/sr1.c	Mon Jan 26 10:55:59 2009	(r28373)
@@ -33,10 +33,10 @@
 
 #if ARCH_X86_64
 // 3DNow! and 3DNow!Ext routines don't compile under AMD64
-#undef HAVE_3DNOW
-#undef HAVE_3DNOWEXT
-#define HAVE_3DNOW 0
-#define HAVE_3DNOWEXT 0
+#undef HAVE_AMD3DNOW
+#undef HAVE_AMD3DNOWEXT
+#define HAVE_AMD3DNOW 0
+#define HAVE_AMD3DNOWEXT 0
 #endif
 
 //static FILE* mp3_file=NULL;
@@ -427,7 +427,7 @@ void MP3_Init(void){
     }
 #endif
 
-#if HAVE_3DNOWEXT
+#if HAVE_AMD3DNOWEXT
     if (gCpuCaps.has3DNowExt)
     {
 	dct36_func=dct36_3dnowex;
@@ -436,7 +436,7 @@ void MP3_Init(void){
     }
     else
 #endif
-#if HAVE_3DNOW
+#if HAVE_AMD3DNOW
     if (gCpuCaps.has3DNow)
     {
 	dct36_func = dct36_3dnow;



More information about the MPlayer-cvslog mailing list