1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-11-26 09:48:45 -05:00

Downchannelizer: correct debug message

This commit is contained in:
f4exb 2020-06-25 01:14:39 +02:00
parent d4959e0a40
commit 83e78deb9f

View File

@ -154,8 +154,8 @@ void DownChannelizer::applyDecimation()
m_channelSampleRate = m_basebandSampleRate / (1 << m_filterStages.size());
m_requestedOutputSampleRate = m_channelSampleRate;
qDebug() << "UpChannelizer::applyInterpolation:"
<< " m_log2Interp:" << m_log2Decim
qDebug() << "DownChannelizer::applyDecimation:"
<< " m_log2Decim:" << m_log2Decim
<< " m_filterChainHash:" << m_filterChainHash
<< " out:" << m_basebandSampleRate
<< " in:" << m_channelSampleRate