diff options
author | kcat <[email protected]> | 2015-09-29 12:39:48 -0700 |
---|---|---|
committer | kcat <[email protected]> | 2015-09-29 12:39:48 -0700 |
commit | e13d553aefe68f63c1c7d479df80c44f4ab70a0f (patch) | |
tree | 576094f09b5fe80c2ca67e9070fe67bb4527bdbb | |
parent | 8883ce1cef86c07d6eaa7e0eff2e132e181184f0 (diff) | |
parent | a7084b105157dd331fd102fbdd867a0a96cb91df (diff) |
Merge pull request #21 from aaronmjacobs/master
Fix resample_fir4 link error
-rw-r--r-- | Alc/ALu.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |