[MPlayer-cvslog] r19506 - trunk/mp3lib/sr1.c
gpoirier
subversion at mplayerhq.hu
Wed Aug 23 10:16:30 CEST 2006
Author: gpoirier
Date: Wed Aug 23 10:16:30 2006
New Revision: 19506
Modified:
trunk/mp3lib/sr1.c
Log:
always use 3dnowext version of dct64 when supported by the CPU (K6-3+ and up).
Patch by Zuxy Meng
Original thread:
Date: Aug 9, 2006 7:05 AM
Subject: Re: [MPlayer-dev-eng] [PATCH] Saturation & PSWAPD bugfix in mp3lib/dct64_3dnow.c & mp3lib/dct64_k7.c
Modified: trunk/mp3lib/sr1.c
==============================================================================
--- trunk/mp3lib/sr1.c (original)
+++ trunk/mp3lib/sr1.c Wed Aug 23 10:16:30 2006
@@ -427,7 +427,7 @@
if (gCpuCaps.has3DNowExt)
{
dct36_func=dct36_3dnowex;
- dct64_MMX_func= (gCpuCaps.hasMMX2) ? dct64_MMX_3dnowex : dct64_MMX_3dnow;
+ dct64_MMX_func= dct64_MMX_3dnowex;
mp_msg(MSGT_DECAUDIO,MSGL_V,"mp3lib: using 3DNow!Ex optimized decore!\n");
}
else
More information about the MPlayer-cvslog
mailing list