aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/mixer_defs.h
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2012-09-14 07:01:58 -0700
committerChris Robinson <[email protected]>2012-09-14 07:01:58 -0700
commit28086f6cb7f0e5c35a97ba60c8e28969981a8817 (patch)
treee403589004fd2fcbfd92698dda343913e938bd55 /Alc/mixer_defs.h
parent45bb010b2801fefb0e154cc6d18c2f7d60d302db (diff)
Implement an SSE cubic resampler
Diffstat (limited to 'Alc/mixer_defs.h')
-rw-r--r--Alc/mixer_defs.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Alc/mixer_defs.h b/Alc/mixer_defs.h
index 91ae24d6..f9dbadbb 100644
--- a/Alc/mixer_defs.h
+++ b/Alc/mixer_defs.h
@@ -17,6 +17,7 @@ void Resample_cubic32_C(const ALfloat *src, ALuint frac, ALuint increment, ALuin
/* SSE resamplers */
void Resample_lerp32_SSE(const ALfloat *src, ALuint frac, ALuint increment, ALuint NumChannels, ALfloat *RESTRICT dst, ALuint dstlen);
+void Resample_cubic32_SSE(const ALfloat *src, ALuint frac, ALuint increment, ALuint NumChannels, ALfloat *RESTRICT dst, ALuint dstlen);
/* C mixers */