| 3 | #include "../../shared/wavetable.h" |
| 4 | |
| 5 | SSFInteractor::SSFInteractor(int numOverlaps, std::shared_ptr<SSFParameters> params) |
| 6 | : SpectralAudioProcessorInteractor(numOverlaps) |
| 7 | { |
| 8 | m_freq = params->getFreqValuePointer(); |
| 9 | m_phase = params->getPhaseValuePointer(); |
| 10 | m_width = params->getWidthValuePointer(); |
| 11 | } |
| 12 | |
| 13 | void SSFInteractor::prepareProcess(StandardFFTProcessor* spectralProcess) { |
| 14 | auto ssf = (SSF_FFTProcessor*)spectralProcess; |
nothing calls this directly
no test coverage detected