summaryrefslogtreecommitdiffstats
path: root/mp3lib/sr1.c
diff options
context:
space:
mode:
authoratmos4 <atmos4@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-11-29 18:05:42 +0000
committeratmos4 <atmos4@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-11-29 18:05:42 +0000
commit4c9621ece7c7a5bd2da22ffbf64fcd730775275d (patch)
treece5e389d53424bd6a21f47e31c28197292e3af92 /mp3lib/sr1.c
parent4b5c1a845c241d7c1b7d63f8c871bcb3b1d1ee20 (diff)
downloadmpv-4c9621ece7c7a5bd2da22ffbf64fcd730775275d.tar.bz2
mpv-4c9621ece7c7a5bd2da22ffbf64fcd730775275d.tar.xz
Disable SSE code and reenable FPU dct for SSE cpus (fpu code is 0.3% faster and I don't get data aligned in dct64_sse.s, so I can't finish optimizing it)
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3204 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'mp3lib/sr1.c')
-rw-r--r--mp3lib/sr1.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/mp3lib/sr1.c b/mp3lib/sr1.c
index a664c9dc88..601c94f211 100644
--- a/mp3lib/sr1.c
+++ b/mp3lib/sr1.c
@@ -409,8 +409,8 @@ void MP3_Init(){
Note: It's ok, Since K8 will have SSE2 support and will much faster
of P4 ;)
*/
- printf( "mp3lib: Using SSE%s! optimized decore.\n",(_isse>1?"2":""));
-// printf( "mp3lib: Using Pentium%s optimized decore.\n",(_i586>1?"-MMX":""));
+// printf( "mp3lib: Using SSE%s! optimized decore.\n",(_isse>1?"2":""));
+ printf( "mp3lib: Using Pentium%s optimized decore.\n",(_i586>1?"-MMX":""));
else
if(_3dnow)
printf( "mp3lib: Using AMD 3dnow%s! optimized decore.\n",(_3dnow>1?"-dsp(k7)":""));
@@ -443,14 +443,14 @@ void MP3_Init(){
tables_done_flag=1;
dct36_func=dct36;
-#ifdef HAVE_SSE
+/*#ifdef HAVE_SSE
if(_isse)
{
synth_func=synth_1to1_MMX;
dct64_MMX_func=dct64_MMX_sse;
}
else
-#endif
+#endif*/
#ifdef HAVE_3DNOWEX
if ( _3dnow > 1 )
{
@@ -518,7 +518,7 @@ void MP3_Init(){
tables_done_flag=1;
dct36_func=dct36;
-#ifdef HAVE_SSE
+/*#ifdef HAVE_SSE
if(gCpuCaps.hasSSE)
{
synth_func=synth_1to1_MMX;
@@ -526,7 +526,7 @@ void MP3_Init(){
printf("mp3lib: using SSE optimized decore!\n");
}
else
-#endif
+#endif*/
#ifdef HAVE_3DNOWEX
if (gCpuCaps.has3DNowExt)
{