comparison mp3lib/sr1.c @ 28326:51797a3b96d2

HAVE_3DNOWEX --> HAVE_3DNOWEXT
author diego
date Sun, 25 Jan 2009 21:03:02 +0000
parents 25337a2147e7
children c39a1fd7d45c
comparison
equal deleted inserted replaced
28325:21504ba0f5d3 28326:51797a3b96d2
28 #include "libvo/fastmemcpy.h" 28 #include "libvo/fastmemcpy.h"
29 29
30 #if ARCH_X86_64 30 #if ARCH_X86_64
31 // 3DNow! and 3DNow!Ext routines don't compile under AMD64 31 // 3DNow! and 3DNow!Ext routines don't compile under AMD64
32 #undef HAVE_3DNOW 32 #undef HAVE_3DNOW
33 #undef HAVE_3DNOWEX 33 #undef HAVE_3DNOWEXT
34 #define HAVE_3DNOW 0 34 #define HAVE_3DNOW 0
35 #define HAVE_3DNOWEX 0 35 #define HAVE_3DNOWEXT 0
36 #endif 36 #endif
37 37
38 //static FILE* mp3_file=NULL; 38 //static FILE* mp3_file=NULL;
39 39
40 int MP3_frames=0; 40 int MP3_frames=0;
421 _has_mmx = 1; 421 _has_mmx = 1;
422 synth_func = synth_1to1_MMX; 422 synth_func = synth_1to1_MMX;
423 } 423 }
424 #endif 424 #endif
425 425
426 #if HAVE_3DNOWEX 426 #if HAVE_3DNOWEXT
427 if (gCpuCaps.has3DNowExt) 427 if (gCpuCaps.has3DNowExt)
428 { 428 {
429 dct36_func=dct36_3dnowex; 429 dct36_func=dct36_3dnowex;
430 dct64_MMX_func= dct64_MMX_3dnowex; 430 dct64_MMX_func= dct64_MMX_3dnowex;
431 mp_msg(MSGT_DECAUDIO,MSGL_V,"mp3lib: using 3DNow!Ex optimized decore!\n"); 431 mp_msg(MSGT_DECAUDIO,MSGL_V,"mp3lib: using 3DNow!Ex optimized decore!\n");