1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-09-27 15:26:33 -04:00

Downchannelizer: added number of decimation stages in debug message

This commit is contained in:
f4exb 2020-08-18 14:26:47 +02:00
parent 843c67a5b0
commit 88111c1384

View File

@ -134,6 +134,7 @@ void DownChannelizer::applyChannelization()
m_channelSampleRate = m_basebandSampleRate / (1 << m_filterStages.size());
qDebug() << "DownChannelizer::applyChannelization done:"
<< " nb stages:" << m_filterStages.size()
<< " in (baseband):" << m_basebandSampleRate
<< " req:" << m_requestedOutputSampleRate
<< " out (channel):" << m_channelSampleRate