diff options
author | Chris Robinson <[email protected]> | 2012-09-14 07:01:58 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2012-09-14 07:01:58 -0700 |
commit | 28086f6cb7f0e5c35a97ba60c8e28969981a8817 (patch) | |
tree | e403589004fd2fcbfd92698dda343913e938bd55 /Alc/mixer_defs.h | |
parent | 45bb010b2801fefb0e154cc6d18c2f7d60d302db (diff) |
Implement an SSE cubic resampler
Diffstat (limited to 'Alc/mixer_defs.h')
-rw-r--r-- | Alc/mixer_defs.h | 1 |
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 */ |