From 7104df1b210edfe5a355eaafe67491c799fbcccb Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Mon, 17 Dec 2018 13:37:27 +0100 Subject: [PATCH] cpu: detect MMXEXT as well --- spa/plugins/support/cpu-x86.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/spa/plugins/support/cpu-x86.c b/spa/plugins/support/cpu-x86.c index 0c7518338..9ef9b2986 100644 --- a/spa/plugins/support/cpu-x86.c +++ b/spa/plugins/support/cpu-x86.c @@ -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)