aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/ALu.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2017-08-18 19:20:30 -0700
committerChris Robinson <[email protected]>2017-08-18 19:20:30 -0700
commit5f50d085adbf20dfa07800715762c498a5c87459 (patch)
tree582ea1701e311d2b6d35e0990a407b9bbe6c0614 /Alc/ALu.c
parentf75020da5a56fed275b5dafc7ee3750f85ee957f (diff)
Pass the filter entry to apply to resample_fir4
Diffstat (limited to 'Alc/ALu.c')
-rw-r--r--Alc/ALu.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/Alc/ALu.c b/Alc/ALu.c
index 6f0f602c..6c37df78 100644
--- a/Alc/ALu.c
+++ b/Alc/ALu.c
@@ -69,9 +69,8 @@ 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 resample_fir4(const ALfloat (*restrict filter)[4],
- ALfloat val0, ALfloat val1, ALfloat val2, ALfloat val3,
- ALsizei frac);
+extern inline ALfloat resample_fir4(ALfloat val0, ALfloat val1, ALfloat val2, ALfloat val3,
+ const ALfloat *restrict filter);
extern inline void aluVectorSet(aluVector *restrict vector, ALfloat x, ALfloat y, ALfloat z, ALfloat w);