diff options
author | Chris Robinson <[email protected]> | 2012-09-14 04:48:23 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2012-09-14 04:48:53 -0700 |
commit | 90e0c74721f9353b51141be09630b76441e61bb7 (patch) | |
tree | 9d4d9e144f173d6a7c3ab430b35dcadaa6e4329a /Alc/mixer_defs.h | |
parent | a20341ac2abbc9fab85c83a9c1b4ec1da9c2708c (diff) |
Implement an SSE linear resampler
Diffstat (limited to 'Alc/mixer_defs.h')
-rw-r--r-- | Alc/mixer_defs.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Alc/mixer_defs.h b/Alc/mixer_defs.h index 38cdb935..91ae24d6 100644 --- a/Alc/mixer_defs.h +++ b/Alc/mixer_defs.h @@ -15,6 +15,9 @@ void Resample_point32_C(const ALfloat *src, ALuint frac, ALuint increment, ALuin void Resample_lerp32_C(const ALfloat *src, ALuint frac, ALuint increment, ALuint NumChannels, ALfloat *RESTRICT dst, ALuint dstlen); void Resample_cubic32_C(const ALfloat *src, ALuint frac, ALuint increment, ALuint NumChannels, ALfloat *RESTRICT dst, ALuint dstlen); +/* SSE resamplers */ +void Resample_lerp32_SSE(const ALfloat *src, ALuint frac, ALuint increment, ALuint NumChannels, ALfloat *RESTRICT dst, ALuint dstlen); + /* C mixers */ void MixDirect_Hrtf_C(struct ALsource*,ALCdevice*,struct DirectParams*,const ALfloat*RESTRICT,ALuint,ALuint,ALuint,ALuint); |