1
0
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:
f4exb
2020-12-20 01:53:03 +01:00
parent af3f016f0b
commit 321cffc9c7
57 changed files with 3595 additions and 97 deletions
+4 -2
View File
@@ -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)