mirror of
https://github.com/f4exb/sdrangel.git
synced 2025-11-30 03:43:24 -05:00
Device API: fixed missing channel sink removal in case of MIMO
This commit is contained in:
parent
9e30ba95ab
commit
6aa01ea6df
@ -102,6 +102,8 @@ void DeviceAPI::removeChannelSink(BasebandSampleSink* sink, int streamIndex)
|
|||||||
|
|
||||||
if (m_deviceSourceEngine) {
|
if (m_deviceSourceEngine) {
|
||||||
m_deviceSourceEngine->removeSink(sink);
|
m_deviceSourceEngine->removeSink(sink);
|
||||||
|
} else if (m_deviceMIMOEngine) {
|
||||||
|
m_deviceMIMOEngine->removeChannelSink(sink);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user