| 2 | #include "SpectralGateFFTProcessor.h" |
| 3 | |
| 4 | void SpectralGateInteractor::prepareProcess(StandardFFTProcessor* spectralProcessor) |
| 5 | { |
| 6 | auto gate = static_cast<SpectralGateFFTProcessor *>(spectralProcessor); |
| 7 | gate->setCutOff(*m_cutOffParameter); |
| 8 | gate->setBalance(*m_balanceParameter); |
| 9 | gate->setTilt(*m_tiltParameter); |
| 10 | gate->setTiltEnabled(m_params->getTiltEnabled()); |
| 11 | } |
| 12 | |
| 13 | std::unique_ptr<StandardFFTProcessor> SpectralGateInteractor::createSpectralProcess(int index, int fftSize, int hopSize, int sampleRate, int numOverlaps, int, int) |
| 14 | { |
nothing calls this directly
no test coverage detected