mirror of
https://github.com/mpv-player/mpv
synced 2024-12-21 22:30:22 +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:
parent
f03667bfb9
commit
225aeb5d31
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user