Skip to content

Commit

Permalink
Set Bandpass Filter default range to 300-6000
Browse files Browse the repository at this point in the history
  • Loading branch information
jsiegle committed Nov 5, 2024
1 parent 587b96b commit 876283f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Plugins/BandpassFilter/BandpassFilter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,8 @@ AudioProcessorEditor* BandpassFilter::createEditor()

void BandpassFilter::registerParameters()
{
addFloatParameter (Parameter::STREAM_SCOPE, "low_cut", "Low cut", "Filter low cut", "Hz", 100, 0.1, 600, 1.0, false);
addFloatParameter (Parameter::STREAM_SCOPE, "high_cut", "High cut", "Filter high cut", "Hz", 5000, 0.1, 6000, 1.0, false);
addFloatParameter (Parameter::STREAM_SCOPE, "low_cut", "Low cut", "Filter low cut", "Hz", 300, 0.1, 1000, 1.0, false);
addFloatParameter (Parameter::STREAM_SCOPE, "high_cut", "High cut", "Filter high cut", "Hz", 6000, 0.1, 10000, 1.0, false);
addMaskChannelsParameter (Parameter::STREAM_SCOPE, "channels", "Channels", "Channels to filter for this stream");

Array<String> numThreads { "1", "4", "8", "16", "32", "64" };
Expand Down

0 comments on commit 876283f

Please sign in to comment.