diff options
author | Chris Robinson <[email protected]> | 2012-09-27 02:46:15 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2012-09-27 02:46:15 -0700 |
commit | 41b2c2f3bbd3a36be7272ceb7711a9bf97042e26 (patch) | |
tree | 7bc30e74fef89de90c9e34ffb55fa19b05367e07 /OpenAL32 | |
parent | 68faef5b84c06c997e65027656f659e16671ba3a (diff) |
Remove an unneeded parameter from the resampler
Diffstat (limited to 'OpenAL32')
-rw-r--r-- | OpenAL32/Include/alu.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/OpenAL32/Include/alu.h b/OpenAL32/Include/alu.h index 79ba8f7e..ef573d6f 100644 --- a/OpenAL32/Include/alu.h +++ b/OpenAL32/Include/alu.h @@ -80,8 +80,7 @@ struct ALbuffer; struct DirectParams; struct SendParams; -typedef void (*ResamplerFunc)(const ALfloat *src, ALuint frac, - ALuint increment, ALuint NumChannels, +typedef void (*ResamplerFunc)(const ALfloat *src, ALuint frac, ALuint increment, ALfloat *RESTRICT dst, ALuint dstlen); typedef ALvoid (*DryMixerFunc)(struct ALsource *self, ALCdevice *Device, |