diff options
author | Chris Robinson <[email protected]> | 2012-09-24 14:47:06 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2012-09-24 14:47:06 -0700 |
commit | 12327da4fefe5aafb9d28d8db232ebd8f6ac93c3 (patch) | |
tree | a287c65ac7f7bf729649ed0a09dfd375b05dc8d8 /Alc/mixer_sse.c | |
parent | 52d403b0d18fa65b976d5e430b9f4c3adc749ac7 (diff) |
Remove SSE resamplers. They aren't gaining us much this way.
Diffstat (limited to 'Alc/mixer_sse.c')
-rw-r--r-- | Alc/mixer_sse.c | 92 |
1 files changed, 0 insertions, 92 deletions
diff --git a/Alc/mixer_sse.c b/Alc/mixer_sse.c index 22a7db40..d366ca8a 100644 --- a/Alc/mixer_sse.c +++ b/Alc/mixer_sse.c @@ -13,98 +13,6 @@ #include "alAuxEffectSlot.h" #include "mixer_defs.h" -static __inline ALfloat lerp32(const ALfloat *vals, ALint step, ALuint frac) -{ return lerp(vals[0], vals[step], frac * (1.0f/FRACTIONONE)); } - -void Resample_lerp32_SSE(const ALfloat *data, ALuint frac, - ALuint increment, ALuint NumChannels, ALfloat *RESTRICT OutBuffer, - ALuint BufferSize) -{ - ALIGN(16) float value[3][4]; - ALuint pos = 0; - ALuint i, j; - - for(i = 0;i < BufferSize+1-3;i+=4) - { - __m128 x, y, a; - for(j = 0;j < 4;j++) - { - value[0][j] = data[(pos )*NumChannels]; - value[1][j] = data[(pos+1)*NumChannels]; - value[2][j] = frac * (1.0f/FRACTIONONE); - - frac += increment; - pos += frac>>FRACTIONBITS; - frac &= FRACTIONMASK; - } - - x = _mm_load_ps(value[0]); - y = _mm_load_ps(value[1]); - y = _mm_sub_ps(y, x); - - a = _mm_load_ps(value[2]); - y = _mm_mul_ps(y, a); - - x = _mm_add_ps(x, y); - - _mm_store_ps(&OutBuffer[i], x); - } - for(;i < BufferSize+1;i++) - { - OutBuffer[i] = lerp32(data + pos*NumChannels, NumChannels, frac); - - frac += increment; - pos += frac>>FRACTIONBITS; - frac &= FRACTIONMASK; - } -} - -void Resample_cubic32_SSE(const ALfloat *data, ALuint frac, - ALuint increment, ALuint channels, ALfloat *RESTRICT OutBuffer, - ALuint BufferSize) -{ - /* Cubic interpolation mainly consists of a matrix4 * vector4 operation, - * followed by scalars being applied to the resulting elements before all - * four are added together for the final sample. */ - static const __m128 matrix[4] = { - { -0.5f, 1.0f, -0.5f, 0.0f }, - { 1.5f, -2.5f, 0.0f, 1.0f }, - { -1.5f, 2.0f, 0.5f, 0.0f }, - { 0.5f, -0.5f, 0.0f, 0.0f }, - }; - ALIGN(16) float value[4]; - ALuint pos = 0; - ALuint i; - - for(i = 0;i < BufferSize+1;i++) - { - __m128 res1, res2; - ALfloat mu; - - /* matrix * { samples } */ - res1 = _mm_add_ps(_mm_mul_ps(_mm_set1_ps(data[(pos-1)*channels]), matrix[0]), - _mm_mul_ps(_mm_set1_ps(data[(pos )*channels]), matrix[1])); - res2 = _mm_add_ps(_mm_mul_ps(_mm_set1_ps(data[(pos+1)*channels]), matrix[2]), - _mm_mul_ps(_mm_set1_ps(data[(pos+2)*channels]), matrix[3])); - res1 = _mm_add_ps(res1, res2); - - /* res1 * { mu^3, mu^2, mu^1, mu^0 } */ - mu = frac * (1.0f/FRACTIONONE); - value[0] = mu*mu*mu; - value[1] = mu*mu; - value[2] = mu; - value[3] = 1.0f; - res1 = _mm_mul_ps(res1, _mm_load_ps(value)); - - _mm_store_ps(value, res1); - OutBuffer[i] = value[0] + value[1] + value[2] + value[3]; - - frac += increment; - pos += frac>>FRACTIONBITS; - frac &= FRACTIONMASK; - } -} - static __inline void ApplyCoeffsStep(ALuint Offset, ALfloat (*RESTRICT Values)[2], const ALuint IrSize, |