diff options
author | Chris Robinson <[email protected]> | 2014-12-15 12:23:28 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2014-12-15 12:23:28 -0800 |
commit | a606bbc7f106b9e741a2e9c2a4726431699cb4ff (patch) | |
tree | cd2e570f8a0007fffc87122bc296aef0a347373d /Alc/ALu.c | |
parent | 4b77f4ef07302acbe4a36d21450510c63bb72a47 (diff) |
Use a lookup table to do cubic resampling
Diffstat (limited to 'Alc/ALu.c')
-rw-r--r-- | Alc/ALu.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |