1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-07-26 12:04:13 -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
@@ -44,9 +44,11 @@ DataFifo *DataPipes::registerChannelToFeature(const ChannelAPI *source, Feature
return m_registrations.registerProducerToConsumer(source, feature, type);
}
void DataPipes::unregisterChannelToFeature(const ChannelAPI *source, Feature *feature, const QString& type)
DataFifo *DataPipes::unregisterChannelToFeature(const ChannelAPI *source, Feature *feature, const QString& type)
{
m_registrations.unregisterProducerToConsumer(source, feature, type);
DataFifo *dataFifo = m_registrations.unregisterProducerToConsumer(source, feature, type);
m_gcWorker->addDataFifoToDelete(dataFifo);
return dataFifo;
}
QList<DataFifo*>* DataPipes::getFifos(const ChannelAPI *source, const QString& type)