| 8 | class emptyProcess : public PhaseVocoder { |
| 9 | public: |
| 10 | emptyProcess(int fftSize, int hopSize, int offset, int sampleRate, std::shared_ptr<PhaseBuffer> phaseBuffer) : PhaseVocoder(fftSize, hopSize, offset, sampleRate, phaseBuffer) {} |
| 11 | |
| 12 | void spectral_process(const PolarVector &in, PolarVector &out, int bins) override { |
| 13 | for(int i=0; i<bins; ++i) { |
nothing calls this directly
no outgoing calls
no test coverage detected