mirror of
https://github.com/mpv-player/mpv
synced 2025-02-28 19:30:44 +00:00
Leave disabling SSE to the check_os_katmai_support always regardless of OS,
it can already handle all cases, will always print a proper warning and probably fixes SSE being disabled on x86_64 Solaris systems. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30971 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
67dcbed681
commit
55089a3986
@ -195,18 +195,10 @@ void GetCpuCaps( CpuCaps *caps)
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* FIXME: Does SSE2 need more OS support, too? */
|
/* FIXME: Does SSE2 need more OS support, too? */
|
||||||
#if defined(__linux__) || defined(__FreeBSD__) || defined(__FreeBSD_kernel__) \
|
|
||||||
|| defined(__NetBSD__) || defined(__OpenBSD__) || defined(__DragonFly__) \
|
|
||||||
|| defined(__APPLE__) || defined(__CYGWIN__) || defined(__MINGW32__) \
|
|
||||||
|| defined(__OS2__)
|
|
||||||
if (caps->hasSSE)
|
if (caps->hasSSE)
|
||||||
check_os_katmai_support();
|
check_os_katmai_support();
|
||||||
if (!caps->hasSSE)
|
if (!caps->hasSSE)
|
||||||
caps->hasSSE2 = 0;
|
caps->hasSSE2 = 0;
|
||||||
#else
|
|
||||||
caps->hasSSE=0;
|
|
||||||
caps->hasSSE2 = 0;
|
|
||||||
#endif
|
|
||||||
// caps->has3DNow=1;
|
// caps->has3DNow=1;
|
||||||
// caps->hasMMX2 = 0;
|
// caps->hasMMX2 = 0;
|
||||||
// caps->hasMMX = 0;
|
// caps->hasMMX = 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user