diff options
author | Chris Robinson <[email protected]> | 2017-04-12 22:45:54 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2017-04-12 22:45:54 -0700 |
commit | 24c172bb96b8a1379e9d37c8c33dbbb7c94f8e61 (patch) | |
tree | f5b068ecc29c4cc65967c1c6cd17d39ae08e577e /Alc/ALu.c | |
parent | 684823ebc4c65957d85b79f0d8ac8b2afe9160bb (diff) |
Use ALsizei for the fir4 resampler fraction
Diffstat (limited to 'Alc/ALu.c')
-rw-r--r-- | Alc/ALu.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -80,7 +80,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 resample_fir4(ALfloat val0, ALfloat val1, ALfloat val2, ALfloat val3, ALuint frac); +extern inline ALfloat resample_fir4(ALfloat val0, ALfloat val1, ALfloat val2, ALfloat val3, ALsizei frac); extern inline void aluVectorSet(aluVector *restrict vector, ALfloat x, ALfloat y, ALfloat z, ALfloat w); |