| 2 | #include "../../shared/Polar.h" |
| 3 | |
| 4 | MorphFFTProcessor::MorphFFTProcessor(int size, int hops, int offset, int sRate, std::shared_ptr<PhaseBuffer> phaseBuffer, Array<int>** pMorphPointsPointer) |
| 5 | : PhaseVocoder(size, hops, offset, sRate, phaseBuffer), m_pMorphPointsPointer(pMorphPointsPointer) |
| 6 | {} |
| 7 | |
| 8 | void MorphFFTProcessor::spectral_process(const PolarVector &in, PolarVector &out, int halfSize) { |
| 9 | for (unsigned int i = 0; i < in.size(); ++i) { |
nothing calls this directly
no outgoing calls
no test coverage detected