mirror of
https://github.com/mpv-player/mpv
synced 2024-12-24 07:33:46 +01:00
some more HAVE_3DNOW --> HAVE_AMD3DNOW
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28373 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
65ea2d93f8
commit
e1c20a72f0
12
mp3lib/sr1.c
12
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;
|
||||
|
Loading…
Reference in New Issue
Block a user