summaryrefslogtreecommitdiffstats
path: root/mp3lib/decod386.c
diff options
context:
space:
mode:
Diffstat (limited to 'mp3lib/decod386.c')
-rw-r--r--mp3lib/decod386.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/mp3lib/decod386.c b/mp3lib/decod386.c
index b5f9349eaa..643e17bbd7 100644
--- a/mp3lib/decod386.c
+++ b/mp3lib/decod386.c
@@ -149,7 +149,7 @@ static int synth_1to1_r(real *bandPtr,int channel,unsigned char *out,int *pnt)
synth_func_t synth_func;
-#ifdef HAVE_MMX
+#if (defined(RUNTIME_CPUDETECT) && defined(CAN_COMPILE_X86_ASM)) || defined(HAVE_MMX)
int synth_1to1_MMX( real *bandPtr,int channel,short * samples)
{
static short buffs[2][2][0x110];
@@ -168,7 +168,8 @@ static int synth_1to1(real *bandPtr,int channel,unsigned char *out,int *pnt)
real *b0,(*buf)[0x110];
int clip = 0;
int bo1;
-#ifdef ARCH_X86
+/* optimized for x86 */
+#if (defined(RUNTIME_CPUDETECT) && defined(CAN_COMPILE_X86_ASM)) || defined(ARCH_X86)
if ( synth_func )
{
int ret;