changeset 28338:f375e517f6f6

some more HAVE_3DNOW --> HAVE_AMD3DNOW
author diego
date Mon, 26 Jan 2009 09:55:59 +0000
parents 34b7297904ac
children 69346a3311e9
files mp3lib/sr1.c
diffstat 1 files changed, 6 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/mp3lib/sr1.c	Mon Jan 26 09:54:14 2009 +0000
+++ b/mp3lib/sr1.c	Mon Jan 26 09:55:59 2009 +0000
@@ -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 @@
     }
 #endif
 
-#if HAVE_3DNOWEXT
+#if HAVE_AMD3DNOWEXT
     if (gCpuCaps.has3DNowExt)
     {
 	dct36_func=dct36_3dnowex;
@@ -436,7 +436,7 @@
     }
     else
 #endif
-#if HAVE_3DNOW
+#if HAVE_AMD3DNOW
     if (gCpuCaps.has3DNow)
     {
 	dct36_func = dct36_3dnow;