diff mp3lib/sr1.c @ 11241:c8b84bb55089

removed obsoleted (or never ending) code
author alex
date Wed, 22 Oct 2003 21:08:46 +0000
parents 5403367c7032
children d155623271e3
line wrap: on
line diff
--- a/mp3lib/sr1.c	Wed Oct 22 20:58:46 2003 +0000
+++ b/mp3lib/sr1.c	Wed Oct 22 21:08:46 2003 +0000
@@ -386,7 +386,6 @@
 extern void dct64_MMX(real *, real *, real *);
 extern void dct64_MMX_3dnow(real *, real *, real *);
 extern void dct64_MMX_3dnowex(real *, real *, real *);
-extern void dct64_MMX_sse(real *, real *, real *);
 void (*dct64_MMX_func)(real *, real *, real *);
 
 #include "../cpudetect.h"
@@ -415,15 +414,6 @@
 	synth_func = synth_1to1_MMX;
     }
 
-#if 0
-    if(gCpuCaps.hasSSE)
-    {
-	/* SSE version is buggy */
-	dct64_MMX_func = dct64_MMX_sse;
-	mp_msg(MSGT_DECAUDIO,MSGL_V,"mp3lib: using SSE optimized decore!\n");
-    }
-    else
-#endif
     if (gCpuCaps.has3DNowExt)
     {
 	dct36_func=dct36_3dnowex;