aboutsummaryrefslogtreecommitdiffstats
path: root/Alc
diff options
context:
space:
mode:
Diffstat (limited to 'Alc')
-rw-r--r--Alc/effects/reverb.c13
1 files changed, 6 insertions, 7 deletions
diff --git a/Alc/effects/reverb.c b/Alc/effects/reverb.c
index 3bdf9b91..c10cd8f0 100644
--- a/Alc/effects/reverb.c
+++ b/Alc/effects/reverb.c
@@ -1378,15 +1378,14 @@ static inline ALvoid EAXVerbPass(ALreverbState *State, ALuint todo, const ALfloa
{
ALuint i;
- // Band-pass and modulate the incoming samples (use the early buffer as temp storage).
- ALfilterState_process(&State->LpFilter, &early[0][0], input, todo);
- ALfilterState_process(&State->HpFilter,
+ /* Perform any modulation on the input (use the early buffer as temp storage). */
+ EAXModulation(State, State->Offset, &early[0][0], input, todo);
+ /* Band-pass the incoming samples */
+ ALfilterState_process(&State->LpFilter,
&early[MAX_UPDATE_SAMPLES/4][0], &early[0][0], todo
);
- // Perform any modulation on the input.
- EAXModulation(State, State->Offset,
- &early[MAX_UPDATE_SAMPLES*2/4][0], &early[MAX_UPDATE_SAMPLES/4][0],
- todo
+ ALfilterState_process(&State->HpFilter,
+ &early[MAX_UPDATE_SAMPLES*2/4][0], &early[MAX_UPDATE_SAMPLES/4][0], todo
);
// Feed the initial delay line.