| 107 | std::unique_ptr<juce::dsp::Oversampling<float>> oversampling; |
| 108 | |
| 109 | BandProcessor() : dryWetMixer(2048), shapeMixer(2048), compressorMixer(2048), widthMixer(2048) |
| 110 | { |
| 111 | // Set a default waveshaper so it's never null |
| 112 | waveshaperFunction = [](float x) |
| 113 | { return x; }; |
| 114 | } |
| 115 | |
| 116 | // And its own set of smoothed parameter values. |
| 117 | juce::SmoothedValue<float> driveSmoother; |
nothing calls this directly
no outgoing calls
no test coverage detected