aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/ALu.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2014-12-15 12:23:28 -0800
committerChris Robinson <[email protected]>2014-12-15 12:23:28 -0800
commita606bbc7f106b9e741a2e9c2a4726431699cb4ff (patch)
treecd2e570f8a0007fffc87122bc296aef0a347373d /Alc/ALu.c
parent4b77f4ef07302acbe4a36d21450510c63bb72a47 (diff)
Use a lookup table to do cubic resampling
Diffstat (limited to 'Alc/ALu.c')
-rw-r--r--Alc/ALu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/ALu.c b/Alc/ALu.c
index d7830ae7..57a68c24 100644
--- a/Alc/ALu.c
+++ b/Alc/ALu.c
@@ -82,7 +82,7 @@ extern inline ALuint64 maxu64(ALuint64 a, ALuint64 b);
extern inline ALuint64 clampu64(ALuint64 val, ALuint64 min, ALuint64 max);
extern inline ALfloat lerp(ALfloat val1, ALfloat val2, ALfloat mu);
-extern inline ALfloat cubic(ALfloat val0, ALfloat val1, ALfloat val2, ALfloat val3, ALfloat mu);
+extern inline ALfloat cubic(ALfloat val0, ALfloat val1, ALfloat val2, ALfloat val3, ALuint frac);
static inline HrtfMixerFunc SelectHrtfMixer(void)