From 55f851093f08bc1274a4b49c85a0651a9f6e9c0f Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Sun, 23 Mar 2014 07:31:33 -0700 Subject: Remove the now-unneeded click removal buffers for the device They are still there for auxiliary sends. However, they should go away soon enough too, and then we won't have to mess around with calculating extra "predictive" samples in the mixer. --- Alc/mixer.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'Alc/mixer.c') diff --git a/Alc/mixer.c b/Alc/mixer.c index 96acb3e8..ae6b324f 100644 --- a/Alc/mixer.c +++ b/Alc/mixer.c @@ -331,8 +331,7 @@ ALvoid MixSource(ALactivesource *src, ALCdevice *Device, ALuint SamplesToDo) DoFilter(&directparms->LpFilter[chan], SrcData, ResampledData, DstBufferSize); - src->DryMix(directparms, SrcData, chan, OutPos, - SamplesToDo, DstBufferSize); + src->DryMix(directparms, SrcData, chan, OutPos, DstBufferSize); } for(j = 0;j < Device->NumAuxSends;j++) -- cgit v1.2.3