aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkcat <[email protected]>2015-09-29 12:39:48 -0700
committerkcat <[email protected]>2015-09-29 12:39:48 -0700
commite13d553aefe68f63c1c7d479df80c44f4ab70a0f (patch)
tree576094f09b5fe80c2ca67e9070fe67bb4527bdbb
parent8883ce1cef86c07d6eaa7e0eff2e132e181184f0 (diff)
parenta7084b105157dd331fd102fbdd867a0a96cb91df (diff)
Merge pull request #21 from aaronmjacobs/master
Fix resample_fir4 link error
-rw-r--r--Alc/ALu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/ALu.c b/Alc/ALu.c
index e8b5027e..3ffe2e63 100644
--- a/Alc/ALu.c
+++ b/Alc/ALu.c
@@ -79,7 +79,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, ALuint frac);
+extern inline ALfloat resample_fir4(ALfloat val0, ALfloat val1, ALfloat val2, ALfloat val3, ALuint frac);
extern inline void aluVectorSet(aluVector *restrict vector, ALfloat x, ALfloat y, ALfloat z, ALfloat w);