mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-22 16:08:39 -05:00
Up/Down channelizers: use input message queue for all message forwarding to sample source/sinks and do not forward unknown messages
This commit is contained in:
parent
cf79a7bb56
commit
906d04dd41
@ -123,7 +123,8 @@ bool DownChannelizer::handleMessage(const Message& cmd)
|
||||
|
||||
if (m_sampleSink != 0)
|
||||
{
|
||||
m_sampleSink->handleMessage(notif);
|
||||
DSPSignalNotification* rep = new DSPSignalNotification(notif); // make a copy
|
||||
m_sampleSink->getInputMessageQueue()->push(rep);
|
||||
}
|
||||
|
||||
emit inputSampleRateChanged();
|
||||
@ -145,14 +146,15 @@ bool DownChannelizer::handleMessage(const Message& cmd)
|
||||
}
|
||||
else
|
||||
{
|
||||
if (m_sampleSink != 0)
|
||||
{
|
||||
return m_sampleSink->handleMessage(cmd);
|
||||
}
|
||||
else
|
||||
{
|
||||
return false;
|
||||
}
|
||||
return false;
|
||||
// if (m_sampleSink != 0)
|
||||
// {
|
||||
// return m_sampleSink->handleMessage(cmd);
|
||||
// }
|
||||
// else
|
||||
// {
|
||||
// return false;
|
||||
// }
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -135,7 +135,8 @@ bool UpChannelizer::handleMessage(const Message& cmd)
|
||||
|
||||
if (m_sampleSource != 0)
|
||||
{
|
||||
m_sampleSource->handleMessage(notif);
|
||||
DSPSignalNotification* rep = new DSPSignalNotification(notif); // make a copy
|
||||
m_sampleSource->getInputMessageQueue()->push(rep);
|
||||
}
|
||||
|
||||
emit outputSampleRateChanged();
|
||||
@ -157,14 +158,15 @@ bool UpChannelizer::handleMessage(const Message& cmd)
|
||||
}
|
||||
else
|
||||
{
|
||||
if (m_sampleSource != 0)
|
||||
{
|
||||
return m_sampleSource->handleMessage(cmd);
|
||||
}
|
||||
else
|
||||
{
|
||||
return false;
|
||||
}
|
||||
return false;
|
||||
// if (m_sampleSource != 0)
|
||||
// {
|
||||
// return m_sampleSource->handleMessage(cmd);
|
||||
// }
|
||||
// else
|
||||
// {
|
||||
// return false;
|
||||
// }
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user