mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-10-31 22:25:38 -04:00
cpu: detect MMXEXT as well
This commit is contained in:
parent
ae6d261122
commit
7104df1b21
1 changed files with 2 additions and 0 deletions
|
|
@ -76,6 +76,8 @@ x86_init(struct impl *impl)
|
|||
flags |= SPA_CPU_FLAG_CMOV;
|
||||
if (edx & bit_MMX)
|
||||
flags |= SPA_CPU_FLAG_MMX;
|
||||
if (edx & bit_MMXEXT)
|
||||
flags |= SPA_CPU_FLAG_MMXEXT;
|
||||
if (edx & bit_SSE)
|
||||
flags |= SPA_CPU_FLAG_SSE;
|
||||
if (edx & bit_SSE2)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue