diff options
author | Chris Robinson <[email protected]> | 2014-04-05 10:24:13 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2014-04-05 10:24:13 -0700 |
commit | 5e0fc84f49bb4f1491ff92ad0bc023b5b87ee934 (patch) | |
tree | d81c36651edae6aa311335efac7c061ea22a1dfa /Alc/mixer_inc.c | |
parent | 569374da2c5f310d9309d477c24627133110dad0 (diff) |
Make HRTF stepping values per-channel
Diffstat (limited to 'Alc/mixer_inc.c')
-rw-r--r-- | Alc/mixer_inc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Alc/mixer_inc.c b/Alc/mixer_inc.c index 93118423..a2d0a16c 100644 --- a/Alc/mixer_inc.c +++ b/Alc/mixer_inc.c @@ -28,8 +28,8 @@ void MixDirect_Hrtf(DirectParams *params, const ALfloat *restrict data, ALuint s { ALfloat (*restrict DryBuffer)[BUFFERSIZE] = params->OutBuffer; const ALuint IrSize = params->Mix.Hrtf.Params.IrSize; - const ALint *restrict DelayStep = params->Mix.Hrtf.Params.DelayStep; - const ALfloat (*restrict CoeffStep)[2] = params->Mix.Hrtf.Params.CoeffStep; + const ALint *restrict DelayStep = params->Mix.Hrtf.Params.DelayStep[srcchan]; + const ALfloat (*restrict CoeffStep)[2] = params->Mix.Hrtf.Params.CoeffStep[srcchan]; const ALfloat (*restrict TargetCoeffs)[2] = params->Mix.Hrtf.Params.Coeffs[srcchan]; const ALuint *restrict TargetDelay = params->Mix.Hrtf.Params.Delay[srcchan]; ALfloat *restrict History = params->Mix.Hrtf.State.History[srcchan]; |