1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-09-28 15:56:33 -04:00

Removed start threaded sink from device engine

This commit is contained in:
f4exb 2017-10-17 23:41:30 +02:00
parent 77ba4dac60
commit b281a63f08

View File

@ -615,12 +615,14 @@ void DSPDeviceSinkEngine::handleSynchronousMessages()
// kv.first = threadedSource;
// (threadedSource->getSampleSourceFifo()).getReadIterator(kv.second);
// m_threadedBasebandSampleSourcesIteratorMap.insert(kv);
threadedSource->start();
// threadedSource->start();
}
else if (DSPRemoveThreadedSampleSource::match(*message))
{
ThreadedBasebandSampleSource* threadedSource = ((DSPRemoveThreadedSampleSource*) message)->getThreadedSampleSource();
threadedSource->stop();
if (m_state == StRunning) {
threadedSource->stop();
}
// not used with sample by sample processing
// m_threadedBasebandSampleSourcesIteratorMap.erase(threadedSource);
m_threadedBasebandSampleSources.remove(threadedSource);