| 259 | #endif |
| 260 | |
| 261 | void SpectralAudioPlugin::emptyOutputs() { |
| 262 | for(auto& output : m_output) |
| 263 | { |
| 264 | std::fill(output.begin(), output.end(), 0.f); |
| 265 | } |
| 266 | } |
| 267 | |
| 268 | void SpectralAudioPlugin::processBlock (AudioBuffer<float>& buffer, MidiBuffer& midiBuffer) |
| 269 | { |
nothing calls this directly
no outgoing calls
no test coverage detected