mirror of
https://github.com/f4exb/sdrangel.git
synced 2026-08-16 00:14:00 -04:00
Demod Analyzer implementation with AM modulator and demodulator
This commit is contained in:
@@ -46,9 +46,11 @@ MessageQueue *MessagePipes::registerChannelToFeature(const ChannelAPI *source, F
|
||||
return m_registrations.registerProducerToConsumer(source, feature, type);
|
||||
}
|
||||
|
||||
void MessagePipes::unregisterChannelToFeature(const ChannelAPI *source, Feature *feature, const QString& type)
|
||||
MessageQueue *MessagePipes::unregisterChannelToFeature(const ChannelAPI *source, Feature *feature, const QString& type)
|
||||
{
|
||||
m_registrations.unregisterProducerToConsumer(source, feature, type);
|
||||
MessageQueue *messageQueue = m_registrations.unregisterProducerToConsumer(source, feature, type);
|
||||
m_gcWorker->addMessageQueueToDelete(messageQueue);
|
||||
return messageQueue;
|
||||
}
|
||||
|
||||
QList<MessageQueue*>* MessagePipes::getMessageQueues(const ChannelAPI *source, const QString& type)
|
||||
|
||||
Reference in New Issue
Block a user