| 17 | }; |
| 18 | |
| 19 | std::unique_ptr<StandardFFTProcessor> BaseProcessor::createSpectralProcess(int index, int fftSize, int hopSize, int sampleRate, int numOverlaps, int channel, int channelCount) |
| 20 | { |
| 21 | return std::make_unique<emptyProcess>(fftSize, hopSize, hopSize * (index%numOverlaps), (int)sampleRate, this->getPhaseBuffer()); |
| 22 | } |
| 23 | |
| 24 | void BaseProcessor::prepareProcess(StandardFFTProcessor * spectralProcessor) |
| 25 | { |
nothing calls this directly
no test coverage detected