diff options
author | Chris Robinson <[email protected]> | 2016-06-01 23:39:13 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2016-06-01 23:39:13 -0700 |
commit | b7da69510c85b776ba119d69c4c74aa38d412594 (patch) | |
tree | 3eeda7d1786a007165e84b85e0ad8e236cad62db /Alc/bformatdec.c | |
parent | a16d0b192e9833ae0abd6e1e7ef2305c34705497 (diff) |
Implement a Neon-enhanced MixRow
Diffstat (limited to 'Alc/bformatdec.c')
-rw-r--r-- | Alc/bformatdec.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Alc/bformatdec.c b/Alc/bformatdec.c index 7da50692..9ebaba27 100644 --- a/Alc/bformatdec.c +++ b/Alc/bformatdec.c @@ -159,6 +159,10 @@ static inline MatrixMixerFunc SelectMixer(void) if((CPUCapFlags&CPU_CAP_SSE)) return MixRow_SSE; #endif +#ifdef HAVE_NEON + if((CPUCapFlags&CPU_CAP_NEON)) + return MixRow_Neon; +#endif return MixRow_C; } |