aboutsummaryrefslogtreecommitdiffstats
path: root/alc/effects
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2020-05-19 13:58:55 -0700
committerChris Robinson <[email protected]>2020-05-19 13:58:55 -0700
commit19baf646d2b22da6978655d2606440e0151aca55 (patch)
tree6134ecfb2a47bfc358b9127bcb21cb25863089fa /alc/effects
parentc5e90ed6c7878178d92aef372d67ed12d126bfc0 (diff)
Rename applyHfScale to processHfScale
Diffstat (limited to 'alc/effects')
-rw-r--r--alc/effects/reverb.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/alc/effects/reverb.cpp b/alc/effects/reverb.cpp
index 709668c0..502a4cf2 100644
--- a/alc/effects/reverb.cpp
+++ b/alc/effects/reverb.cpp
@@ -496,7 +496,7 @@ struct ReverbState final : public EffectState {
* higher-order output.
*/
const float hfscale{(c==0) ? mOrderScales[0] : mOrderScales[1]};
- mAmbiSplitter[0][c].applyHfScale(tmpspan, hfscale);
+ mAmbiSplitter[0][c].processHfScale(tmpspan, hfscale);
MixSamples(tmpspan, samplesOut, mEarly.CurrentGain[c], mEarly.PanGain[c], counter,
offset);
@@ -506,7 +506,7 @@ struct ReverbState final : public EffectState {
DoMixRow(tmpspan, A2B[c], mLateSamples[0].data(), mLateSamples[0].size());
const float hfscale{(c==0) ? mOrderScales[0] : mOrderScales[1]};
- mAmbiSplitter[1][c].applyHfScale(tmpspan, hfscale);
+ mAmbiSplitter[1][c].processHfScale(tmpspan, hfscale);
MixSamples(tmpspan, samplesOut, mLate.CurrentGain[c], mLate.PanGain[c], counter,
offset);