cpu: detect MMXEXT as well

This commit is contained in:
Wim Taymans 2018-12-17 13:37:27 +01:00
parent ae6d261122
commit 7104df1b21

View file

@ -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)