aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/mixer_c.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2012-09-27 02:46:15 -0700
committerChris Robinson <[email protected]>2012-09-27 02:46:15 -0700
commit41b2c2f3bbd3a36be7272ceb7711a9bf97042e26 (patch)
tree7bc30e74fef89de90c9e34ffb55fa19b05367e07 /Alc/mixer_c.c
parent68faef5b84c06c997e65027656f659e16671ba3a (diff)
Remove an unneeded parameter from the resampler
Diffstat (limited to 'Alc/mixer_c.c')
-rw-r--r--Alc/mixer_c.c20
1 files changed, 8 insertions, 12 deletions
diff --git a/Alc/mixer_c.c b/Alc/mixer_c.c
index efa51b75..a85d3ee9 100644
--- a/Alc/mixer_c.c
+++ b/Alc/mixer_c.c
@@ -6,27 +6,23 @@
#include "alAuxEffectSlot.h"
-static __inline ALfloat point32(const ALfloat *vals, ALint step, ALint frac)
-{ return vals[0]; (void)step; (void)frac; }
-static __inline ALfloat lerp32(const ALfloat *vals, ALint step, ALint frac)
-{ return lerp(vals[0], vals[step], frac * (1.0f/FRACTIONONE)); }
-static __inline ALfloat cubic32(const ALfloat *vals, ALint step, ALint frac)
-{ return cubic(vals[-step], vals[0], vals[step], vals[step+step],
- frac * (1.0f/FRACTIONONE)); }
+static __inline ALfloat point32(const ALfloat *vals, ALint frac)
+{ return vals[0]; (void)frac; }
+static __inline ALfloat lerp32(const ALfloat *vals, ALint frac)
+{ return lerp(vals[0], vals[1], frac * (1.0f/FRACTIONONE)); }
+static __inline ALfloat cubic32(const ALfloat *vals, ALint frac)
+{ return cubic(vals[-1], vals[0], vals[1], vals[2], frac * (1.0f/FRACTIONONE)); }
#define DECL_TEMPLATE(Sampler) \
void Resample_##Sampler##_C(const ALfloat *data, ALuint frac, \
- ALuint increment, ALuint NumChannels, ALfloat *RESTRICT OutBuffer, \
- ALuint BufferSize) \
+ ALuint increment, ALfloat *RESTRICT OutBuffer, ALuint BufferSize) \
{ \
ALuint pos = 0; \
- ALfloat value; \
ALuint i; \
\
for(i = 0;i < BufferSize+1;i++) \
{ \
- value = Sampler(data + pos*NumChannels, NumChannels, frac); \
- OutBuffer[i] = value; \
+ OutBuffer[i] = Sampler(data + pos, frac); \
\
frac += increment; \
pos += frac>>FRACTIONBITS; \