diff options
author | Chris Robinson <[email protected]> | 2010-08-03 01:44:52 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2010-08-03 01:44:52 -0700 |
commit | 91278608c5d342a9c4322bd6296d0eba9eb3af4c (patch) | |
tree | 503ba8d90e0cfb6655ec3380daa4a71112edb74f /Alc | |
parent | 8e2d7656716eab555446b687be2817f84ceae9bf (diff) |
Add some spacing
Diffstat (limited to 'Alc')
-rw-r--r-- | Alc/ALu.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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); \ |