diff options
author | Chris Robinson <[email protected]> | 2022-08-18 20:37:19 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2022-08-18 20:37:19 -0700 |
commit | ed9408e53799cefd527bd3079bf1940d5c35bfc9 (patch) | |
tree | 85e87aa1d5bcc342e043e822e6da50c2fbd3bb3b /alc/effects/pshifter.cpp | |
parent | 4f75f9258ca316fdb52db4d61158a8e22b442e46 (diff) |
Inline and precompute some CalcDirectionCoeffs calls
Diffstat (limited to 'alc/effects/pshifter.cpp')
-rw-r--r-- | alc/effects/pshifter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/alc/effects/pshifter.cpp b/alc/effects/pshifter.cpp index fe116222..b1f6d859 100644 --- a/alc/effects/pshifter.cpp +++ b/alc/effects/pshifter.cpp @@ -140,7 +140,7 @@ void PshifterState::update(const ContextBase*, const EffectSlot *slot, mPitchShiftI = fastf2u(pitch*MixerFracOne); mPitchShift = mPitchShiftI * double{1.0/MixerFracOne}; - const auto coeffs = CalcDirectionCoeffs({0.0f, 0.0f, -1.0f}, 0.0f); + static constexpr auto coeffs = CalcDirectionCoeffs({0.0f, 0.0f, -1.0f}); mOutTarget = target.Main->Buffer; ComputePanGains(target.Main, coeffs.data(), slot->Gain, mTargetGains); |