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
1 changed files with 6 additions and 2 deletions

View File

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