aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/mixer_defs.h
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2014-12-15 13:58:41 -0800
committerChris Robinson <[email protected]>2014-12-15 13:58:41 -0800
commit177dd956866aeed61e549f2163ac8beadd596ba1 (patch)
treefb27f6a551353ce7f21abcfd0b1011f8c614f7a0 /Alc/mixer_defs.h
parenta606bbc7f106b9e741a2e9c2a4726431699cb4ff (diff)
Add SSE2 and SSE4.1 cubic resamplers
Diffstat (limited to 'Alc/mixer_defs.h')
-rw-r--r--Alc/mixer_defs.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/Alc/mixer_defs.h b/Alc/mixer_defs.h
index c1500ed2..00176ad4 100644
--- a/Alc/mixer_defs.h
+++ b/Alc/mixer_defs.h
@@ -54,6 +54,11 @@ const ALfloat *Resample_lerp32_SSE2(const ALfloat *src, ALuint frac, ALuint incr
const ALfloat *Resample_lerp32_SSE41(const ALfloat *src, ALuint frac, ALuint increment,
ALfloat *restrict dst, ALuint numsamples);
+const ALfloat *Resample_cubic32_SSE2(const ALfloat *src, ALuint frac, ALuint increment,
+ ALfloat *restrict dst, ALuint numsamples);
+const ALfloat *Resample_cubic32_SSE41(const ALfloat *src, ALuint frac, ALuint increment,
+ ALfloat *restrict dst, ALuint numsamples);
+
/* Neon mixers */
void MixHrtf_Neon(ALfloat (*restrict OutBuffer)[BUFFERSIZE], const ALfloat *data,
ALuint Counter, ALuint Offset, ALuint OutPos, const ALuint IrSize,