1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-02 06:04:39 -04:00

Device source API: renamed input and output message queues getters to more meaningful names

This commit is contained in:
f4exb
2017-09-13 23:40:06 +02:00
parent f30b049546
commit 24442c18a3
24 changed files with 50 additions and 50 deletions
@@ -531,7 +531,7 @@ bool SDRPlayInput::applySettings(const SDRPlaySettings& settings, bool forwardCh
int sampleRate = getSampleRate();
DSPSignalNotification *notif = new DSPSignalNotification(sampleRate, m_settings.m_centerFrequency);
m_fileSink->handleMessage(*notif); // forward to file sink
m_deviceAPI->getDeviceInputMessageQueue()->push(notif);
m_deviceAPI->getDeviceEngineInputMessageQueue()->push(notif);
}
return true;