| 69 | HRTFKernel(AudioChannel *, int fftSize, float sampleRate); |
| 70 | |
| 71 | HRTFKernel(std::unique_ptr<FFTFrame> fftFrame, float frameDelay, float sampleRate) |
| 72 | : m_fftFrame(std::move(fftFrame)) |
| 73 | , m_frameDelay(frameDelay) |
| 74 | , m_sampleRate(sampleRate) |
| 75 | { |
| 76 | //m_fftFrame->print(); |
| 77 | } |
| 78 | |
| 79 | FFTFrame * fftFrame() { return m_fftFrame.get(); } |
| 80 |
nothing calls this directly
no outgoing calls
no test coverage detected