mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-22 16:08:39 -05:00
Device API: fixed missing channel sink removal in case of MIMO
This commit is contained in:
parent
c8ec9e4ea8
commit
83183b8a6a
@ -102,6 +102,8 @@ void DeviceAPI::removeChannelSink(BasebandSampleSink* sink, int streamIndex)
|
||||
|
||||
if (m_deviceSourceEngine) {
|
||||
m_deviceSourceEngine->removeSink(sink);
|
||||
} else if (m_deviceMIMOEngine) {
|
||||
m_deviceMIMOEngine->removeChannelSink(sink);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user