aboutsummaryrefslogtreecommitdiffstats
path: root/Alc
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2010-08-03 01:44:52 -0700
committerChris Robinson <[email protected]>2010-08-03 01:44:52 -0700
commit91278608c5d342a9c4322bd6296d0eba9eb3af4c (patch)
tree503ba8d90e0cfb6655ec3380daa4a71112edb74f /Alc
parent8e2d7656716eab555446b687be2817f84ceae9bf (diff)
Add some spacing
Diffstat (limited to 'Alc')
-rw-r--r--Alc/ALu.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/Alc/ALu.c b/Alc/ALu.c
index 9464895b..7684a86f 100644
--- a/Alc/ALu.c
+++ b/Alc/ALu.c
@@ -840,10 +840,12 @@ static void MixSource(ALsource *ALSource, ALCcontext *ALContext,
value = (resampler)(Data[DataPosInt*Channels + i], \
Data[(DataPosInt+1)*Channels + i], \
DataPosFrac); \
+ \
outsamp = lpFilter2P(DryFilter, chans[i]*2, value) * dupscaler; \
DryBuffer[j][chans[i]] += outsamp*DrySend[chans[i]]; \
DryBuffer[j][chans2[i*2+0]] += outsamp*DrySend[chans2[i*2+0]]; \
DryBuffer[j][chans2[i*2+1]] += outsamp*DrySend[chans2[i*2+1]]; \
+ \
for(out = 0;out < MAX_SENDS;out++) \
{ \
outsamp = lpFilter1P(WetFilter[out], chans[i], value); \
@@ -892,8 +894,10 @@ static void MixSource(ALsource *ALSource, ALCcontext *ALContext,
value = (resampler)(Data[DataPosInt*Channels + i], \
Data[(DataPosInt+1)*Channels + i], \
DataPosFrac); \
+ \
outsamp = lpFilter2P(DryFilter, chans[i]*2, value); \
DryBuffer[j][chans[i]] += outsamp*DrySend[chans[i]]; \
+ \
for(out = 0;out < MAX_SENDS;out++) \
{ \
outsamp = lpFilter1P(WetFilter[out], chans[i], value); \