diff options
author | Chris Robinson <[email protected]> | 2019-05-25 11:54:51 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2019-05-25 11:54:51 -0700 |
commit | 8ca97a7d9a336b9de7a1d1dc400279e8de76d65e (patch) | |
tree | a98d548e9625aa8850e7e6d00ae5af8741c1424a /Alc/alu.cpp | |
parent | 5b5dee07b43808907fba0d2dff5a00ea9069048b (diff) |
Move a couple functions into its related class
Diffstat (limited to 'Alc/alu.cpp')
-rw-r--r-- | Alc/alu.cpp | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/Alc/alu.cpp b/Alc/alu.cpp index 2bdfd092..94ba3aa8 100644 --- a/Alc/alu.cpp +++ b/Alc/alu.cpp @@ -933,11 +933,9 @@ void CalcPanningAndFilters(ALvoice *voice, const ALfloat xpos, const ALfloat ypo if(gainHF != 1.0f) voice->mDirect.FilterType |= AF_LowPass; if(gainLF != 1.0f) voice->mDirect.FilterType |= AF_HighPass; voice->mDirect.Params[0].LowPass.setParams(BiquadType::HighShelf, - gainHF, hfScale, calc_rcpQ_from_slope(gainHF, 1.0f) - ); + gainHF, hfScale, BiquadFilter::rcpQFromSlope(gainHF, 1.0f)); voice->mDirect.Params[0].HighPass.setParams(BiquadType::LowShelf, - gainLF, lfScale, calc_rcpQ_from_slope(gainLF, 1.0f) - ); + gainLF, lfScale, BiquadFilter::rcpQFromSlope(gainLF, 1.0f)); for(ALsizei c{1};c < num_channels;c++) { voice->mDirect.Params[c].LowPass.copyParamsFrom(voice->mDirect.Params[0].LowPass); @@ -955,11 +953,9 @@ void CalcPanningAndFilters(ALvoice *voice, const ALfloat xpos, const ALfloat ypo if(gainHF != 1.0f) voice->mSend[i].FilterType |= AF_LowPass; if(gainLF != 1.0f) voice->mSend[i].FilterType |= AF_HighPass; voice->mSend[i].Params[0].LowPass.setParams(BiquadType::HighShelf, - gainHF, hfScale, calc_rcpQ_from_slope(gainHF, 1.0f) - ); + gainHF, hfScale, BiquadFilter::rcpQFromSlope(gainHF, 1.0f)); voice->mSend[i].Params[0].HighPass.setParams(BiquadType::LowShelf, - gainLF, lfScale, calc_rcpQ_from_slope(gainLF, 1.0f) - ); + gainLF, lfScale, BiquadFilter::rcpQFromSlope(gainLF, 1.0f)); for(ALsizei c{1};c < num_channels;c++) { voice->mSend[i].Params[c].LowPass.copyParamsFrom(voice->mSend[i].Params[0].LowPass); |