diff options
author | Chris Robinson <[email protected]> | 2014-03-23 02:45:50 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2014-03-23 02:45:50 -0700 |
commit | b0d511a8609cd2f3c10fd5b65603211a14c8141e (patch) | |
tree | ed50d56b16a3450f36ee21332b5b6df052693a56 /Alc/mixer_c.c | |
parent | cc599333a8100dd3b8e52ef018e01d4e184c1532 (diff) |
Store the HrtfState directly in the DirectParams
Diffstat (limited to 'Alc/mixer_c.c')
-rw-r--r-- | Alc/mixer_c.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Alc/mixer_c.c b/Alc/mixer_c.c index 393096db..6b21e67a 100644 --- a/Alc/mixer_c.c +++ b/Alc/mixer_c.c @@ -82,7 +82,7 @@ static inline void ApplyCoeffs(ALuint Offset, ALfloat (*restrict Values)[2], #undef SUFFIX -void MixDirect_C(const DirectParams *params, const ALfloat *restrict data, ALuint srcchan, +void MixDirect_C(DirectParams *params, const ALfloat *restrict data, ALuint srcchan, ALuint OutPos, ALuint SamplesToDo, ALuint BufferSize) { ALfloat (*restrict OutBuffer)[BUFFERSIZE] = params->OutBuffer; @@ -108,7 +108,7 @@ void MixDirect_C(const DirectParams *params, const ALfloat *restrict data, ALuin } -void MixSend_C(const SendParams *params, const ALfloat *restrict data, +void MixSend_C(SendParams *params, const ALfloat *restrict data, ALuint OutPos, ALuint SamplesToDo, ALuint BufferSize) { ALfloat (*restrict OutBuffer)[BUFFERSIZE] = params->OutBuffer; |