aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/ALc.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2012-08-14 03:53:07 -0700
committerChris Robinson <[email protected]>2012-08-14 03:53:07 -0700
commite9a20cb985c5686fd2777540dbbd2a13c9525ee0 (patch)
tree568b287aff7b9dad019ea3e2048b1f5a1dc0e79c /Alc/ALc.c
parentcfc52055697a124edd32c9f057d34857a49e7e14 (diff)
Add an SSE-enhanced HRTF mixer using intrinsics
Not as good as it could be, but it's something
Diffstat (limited to 'Alc/ALc.c')
-rw-r--r--Alc/ALc.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/Alc/ALc.c b/Alc/ALc.c
index e664d25a..14a74a92 100644
--- a/Alc/ALc.c
+++ b/Alc/ALc.c
@@ -812,7 +812,9 @@ static void alc_initconfig(void)
continue;
len = (next ? ((size_t)(next-str)) : strlen(str));
- if(strncasecmp(str, "neon", len) == 0)
+ if(strncasecmp(str, "sse", len) == 0)
+ capfilter &= ~CPU_CAP_SSE;
+ else if(strncasecmp(str, "neon", len) == 0)
capfilter &= ~CPU_CAP_NEON;
else
WARN("Invalid CPU extension \"%s\"\n", str);