[Mplayer-cvslog] CVS: main/mp3lib sr1.c,1.22,1.23
Arpi of Ize
arpi at mplayerhq.hu
Sat Sep 21 22:24:05 CEST 2002
- Previous message: [Mplayer-cvslog] CVS: main cfg-mplayer.h,1.163,1.164 mplayer.c,1.567,1.568 subreader.c,1.68,1.69 subreader.h,1.17,1.18
- Next message: [Mplayer-cvslog] CVS: main/TOOLS mencvcd,1.9,1.10
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /cvsroot/mplayer/main/mp3lib
In directory mail:/var/tmp.root/cvs-serv31863
Modified Files:
sr1.c
Log Message:
pshufw is a mmx2 instruction, so don't use dct64_MMX_3dnowex on k6-3 which
has no mmxext (but has 3dnowex) - bug found by Diego, help by Michael
Index: sr1.c
===================================================================
RCS file: /cvsroot/mplayer/main/mp3lib/sr1.c,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- sr1.c 24 May 2002 01:56:01 -0000 1.22
+++ sr1.c 21 Sep 2002 20:23:49 -0000 1.23
@@ -444,7 +444,7 @@
{
synth_func=synth_1to1_MMX;
dct36_func=dct36_3dnowex;
- dct64_MMX_func=dct64_MMX_3dnowex;
+ dct64_MMX_func= (accel & MM_ACCEL_X86_MMXEXT) ? dct64_MMX_3dnowex : dct64_MMX_3dnow;
mp_msg(MSGT_DECAUDIO,MSGL_V,"mp3lib: using 3DNow!Ex optimized decore!\n");
}
else
- Previous message: [Mplayer-cvslog] CVS: main cfg-mplayer.h,1.163,1.164 mplayer.c,1.567,1.568 subreader.c,1.68,1.69 subreader.h,1.17,1.18
- Next message: [Mplayer-cvslog] CVS: main/TOOLS mencvcd,1.9,1.10
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the MPlayer-cvslog
mailing list