diff options
author | Chris Robinson <[email protected]> | 2015-10-12 06:34:55 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2015-10-12 06:34:55 -0700 |
commit | 67455c66a117e8e2fb1aaac95586a346660013d9 (patch) | |
tree | 7b8e3773c809ea24185a650f5bf78d29a1e5202e | |
parent | db4253d3bd8dec40f3bc0f3a99d1f5f5c282c909 (diff) |
Replace the resample_fir6 declaration with resample_fir8
-rw-r--r-- | Alc/ALu.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -80,7 +80,7 @@ extern inline ALuint64 clampu64(ALuint64 val, ALuint64 min, ALuint64 max); extern inline ALfloat lerp(ALfloat val1, ALfloat val2, ALfloat mu); extern inline ALfloat resample_fir4(ALfloat val0, ALfloat val1, ALfloat val2, ALfloat val3, ALuint frac); -extern inline ALfloat resample_fir6(ALfloat val0, ALfloat val1, ALfloat val2, ALfloat val3, ALfloat val4, ALfloat val5, ALuint frac); +extern inline ALfloat resample_fir8(ALfloat val0, ALfloat val1, ALfloat val2, ALfloat val3, ALfloat val4, ALfloat val5, ALfloat val6, ALfloat val7, ALuint frac); extern inline void aluVectorSet(aluVector *restrict vector, ALfloat x, ALfloat y, ALfloat z, ALfloat w); |