MCPcopy Create free account
hub / github.com/jerryuhoo/Fire / makeLowcutQFilter

Function makeLowcutQFilter

Source/PluginProcessor.cpp:1168–1174  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1166}
1167
1168CoefficientsPtr makeLowcutQFilter(const ChainSettings& chainSettings, double sampleRate)
1169{
1170 return juce::dsp::IIR::Coefficients<float>::makePeakFilter(sampleRate,
1171 chainSettings.lowCutFreq,
1172 chainSettings.lowCutQuality,
1173 juce::Decibels::decibelsToGain(chainSettings.lowCutGainInDecibels));
1174}
1175
1176CoefficientsPtr makeHighcutQFilter(const ChainSettings& chainSettings, double sampleRate)
1177{

Callers 3

updateLowCutFiltersMethod · 0.85
updateChainMethod · 0.85
updateLfoChainMethod · 0.85

Calls 1

makePeakFilterFunction · 0.85

Tested by

no test coverage detected