summaryrefslogtreecommitdiffstats
path: root/mp3lib/decod386.c
diff options
context:
space:
mode:
Diffstat (limited to 'mp3lib/decod386.c')
-rw-r--r--mp3lib/decod386.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/mp3lib/decod386.c b/mp3lib/decod386.c
index a067162528..e0c2c570b9 100644
--- a/mp3lib/decod386.c
+++ b/mp3lib/decod386.c
@@ -117,6 +117,15 @@ static int synth_1to1(real *bandPtr,int channel,unsigned char *out,int *pnt)
int clip = 0;
int bo1;
+ #ifdef HAVE_SSE_MP3
+ //if ( _3dnow )
+ {
+ int ret;
+ ret=synth_1to1_sse( bandPtr,channel,out+*pnt );
+ *pnt+=128;
+ return ret;
+ }
+ #endif
#ifdef HAVE_3DNOWEX
if ( _3dnow > 1 )
{