summaryrefslogtreecommitdiffstats
path: root/mp3lib
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-01-26 09:55:59 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-01-26 09:55:59 +0000
commite1c20a72f0fcaf36a04a6e3f674d1e2be016cc9e (patch)
tree72e14bd383d4b5c427d95a9aa31466540a5a9907 /mp3lib
parent65ea2d93f8dfe29facf88c4e00ffe995ac0ec8c3 (diff)
downloadmpv-e1c20a72f0fcaf36a04a6e3f674d1e2be016cc9e.tar.bz2
mpv-e1c20a72f0fcaf36a04a6e3f674d1e2be016cc9e.tar.xz
some more HAVE_3DNOW --> HAVE_AMD3DNOW
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28373 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'mp3lib')
-rw-r--r--mp3lib/sr1.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/mp3lib/sr1.c b/mp3lib/sr1.c
index 6606ed3429..aadb22c388 100644
--- a/mp3lib/sr1.c
+++ b/mp3lib/sr1.c
@@ -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;