1
0
mirror of https://github.com/mpv-player/mpv synced 2025-02-08 07:57:19 +00:00
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3220 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
alex 2001-11-30 16:50:37 +00:00
parent f7ae53c46a
commit d38ab4b67a

View File

@ -557,14 +557,14 @@ void MP3_Init(){
else else
#endif #endif
#ifdef ARCH_X86 #ifdef ARCH_X86
if (gCpuCaps.cpuType >= CPUTYPE_I386) if (gCpuCaps.cpuType == CPUTYPE_I586)
{ {
synth_func=synth_1to1_pent; synth_func=synth_1to1_pent;
} }
else else
#endif #endif
{ {
synth_func = NULL; synth_func = NULL; /* use default c version */
} }
#endif #endif
} }