diff options
author | Chris Robinson <[email protected]> | 2019-09-17 18:38:46 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2019-09-17 18:38:46 -0700 |
commit | aca9f4e09586f4b1859bb28c5712f39c1b95570e (patch) | |
tree | 214ef2e4e5bdcb9330272e501cccc7560dee8ffa /alc/alu.h | |
parent | 1da75126283cbd0f7ed3835a34c6e34e8dcfc32a (diff) |
Make the bsinc l and m coefficients unsigned
Diffstat (limited to 'alc/alu.h')
-rw-r--r-- | alc/alu.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -67,8 +67,8 @@ extern Resampler ResamplerDefault; */ struct BsincState { ALfloat sf; /* Scale interpolation factor. */ - ALsizei m; /* Coefficient count. */ - ALsizei l; /* Left coefficient offset. */ + ALuint m; /* Coefficient count. */ + ALuint l; /* Left coefficient offset. */ /* Filter coefficients, followed by the scale, phase, and scale-phase * delta coefficients. Starting at phase index 0, each subsequent phase * index follows contiguously. |