1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-01 21:54:55 -04:00

Device engines: stop device before channels when going idle

This commit is contained in:
f4exb
2019-10-06 09:54:07 +02:00
parent 0bc4db5f89
commit d6382fbbaa
3 changed files with 4 additions and 3 deletions
+1 -1
View File
@@ -435,6 +435,7 @@ DSPDeviceSourceEngine::State DSPDeviceSourceEngine::gotoIdle()
}
// stop everything
m_deviceSampleSource->stop();
for(BasebandSampleSinks::const_iterator it = m_basebandSampleSinks.begin(); it != m_basebandSampleSinks.end(); it++)
{
@@ -446,7 +447,6 @@ DSPDeviceSourceEngine::State DSPDeviceSourceEngine::gotoIdle()
(*it)->stop();
}
m_deviceSampleSource->stop();
m_deviceDescription.clear();
m_sampleRate = 0;