diff options
author | Chris Robinson <[email protected]> | 2017-12-24 19:59:35 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2017-12-24 20:41:20 -0800 |
commit | 27dfb7fd11ae290956fd7af631baab076d8e83a7 (patch) | |
tree | 49d160d8f0924197a79dc640a8d1c81de0c6e8ec /Alc | |
parent | 6457df54bb9c1de17681e4f2ab81b21af94b7136 (diff) |
Fix up a comment
Diffstat (limited to 'Alc')
-rw-r--r-- | Alc/effects/reverb.c | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/Alc/effects/reverb.c b/Alc/effects/reverb.c index c0927850..bf17cbe1 100644 --- a/Alc/effects/reverb.c +++ b/Alc/effects/reverb.c @@ -1653,12 +1653,11 @@ static inline ALfloat LateT60Filter(const ALsizei index, const ALfloat in, ALrev * Finally, the lines are reversed (so they feed their opposite directions) * and scattered with the FDN matrix before re-feeding the delay lines. * - * Two static specializations are used for transitional (cross-faded) delay - * line processing and non-transitional processing. + * Two variations are made, one for for transitional (cross-faded) delay line + * processing and one for non-transitional processing. */ -static ALvoid LateReverb_Faded(ALreverbState *State, const ALsizei todo, - ALfloat fade, - ALfloat (*restrict out)[MAX_UPDATE_SAMPLES]) +static ALvoid LateReverb_Faded(ALreverbState *State, const ALsizei todo, ALfloat fade, + ALfloat (*restrict out)[MAX_UPDATE_SAMPLES]) { ALsizei (*restrict moddelay)[MAX_UPDATE_SAMPLES][2] = State->ModulationDelays; const ALfloat apFeedCoeff = State->ApFeedCoeff; @@ -1715,8 +1714,7 @@ static ALvoid LateReverb_Faded(ALreverbState *State, const ALsizei todo, fade += FadeStep; } } -static ALvoid LateReverb_Unfaded(ALreverbState *State, const ALsizei todo, - ALfloat fade, +static ALvoid LateReverb_Unfaded(ALreverbState *State, const ALsizei todo, ALfloat fade, ALfloat (*restrict out)[MAX_UPDATE_SAMPLES]) { ALsizei (*restrict moddelay)[MAX_UPDATE_SAMPLES][2] = State->ModulationDelays; |