1
0
mirror of https://github.com/mpv-player/mpv synced 2024-12-22 06:42:03 +00:00

One flaw is fixed

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1277 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
nick 2001-07-04 20:54:09 +00:00
parent f03667bfb9
commit 225aeb5d31

View File

@ -394,9 +394,13 @@ void MP3_Init(){
_CpuID = _i586 = _3dnow = _isse = _has_mmx = 0; _CpuID = _i586 = _3dnow = _isse = _has_mmx = 0;
printf( "mp3lib: Using generic decore.\n"); printf( "mp3lib: Using generic decore.\n");
#endif #endif
#ifdef HAVE_MMX
/* Use it for any MMX cpu */ /* Use it for any MMX cpu */
if(_has_mmx) make_decode_tables_MMX(outscale); if(_has_mmx)
else make_decode_tables(outscale); make_decode_tables_MMX(outscale);
else
#endif
make_decode_tables(outscale);
#ifdef USE_FAKE_MONO #ifdef USE_FAKE_MONO
if (fakemono == 1) if (fakemono == 1)
fr.synth=synth_1to1_l; fr.synth=synth_1to1_l;