| 95 | // ---------------------------------------------------------------------------------------------------- |
| 96 | |
| 97 | MonitorSpectralNode::MonitorSpectralNode( const Format &format ) |
| 98 | : MonitorNode( format ), mFftSize( format.getFftSize() ), mWindowType( format.getWindowType() ), |
| 99 | mSmoothingFactor( 0.5f ), mLastFrameMagSpectrumComputed( 0 ) |
| 100 | { |
| 101 | } |
| 102 | |
| 103 | MonitorSpectralNode::~MonitorSpectralNode() |
| 104 | { |
nothing calls this directly
no test coverage detected