summaryrefslogtreecommitdiffstats
path: root/mp3lib/sr1.c
diff options
context:
space:
mode:
authoralex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-10-22 21:08:46 +0000
committeralex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-10-22 21:08:46 +0000
commit44792402b200296e9759faf6b0d4a3fc9b6cdfa0 (patch)
tree6d9ca8f502058a808267beeaadb481fd87695b76 /mp3lib/sr1.c
parentcf069df98e3ae5a0ee6179ba7f6f734b323ed7f2 (diff)
downloadmpv-44792402b200296e9759faf6b0d4a3fc9b6cdfa0.tar.bz2
mpv-44792402b200296e9759faf6b0d4a3fc9b6cdfa0.tar.xz
removed obsoleted (or never ending) code
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11242 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'mp3lib/sr1.c')
-rw-r--r--mp3lib/sr1.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/mp3lib/sr1.c b/mp3lib/sr1.c
index 025ef1faa1..c7dc78d49d 100644
--- a/mp3lib/sr1.c
+++ b/mp3lib/sr1.c
@@ -386,7 +386,6 @@ int _has_mmx = 0; // used by layer2.c, layer3.c to pre-scale coeffs
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 @@ void MP3_Init(){
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;