1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-07 08:24:43 -04:00

Remote output: threading refactoring

This commit is contained in:
f4exb
2019-12-12 18:24:50 +01:00
parent 1a8028a4eb
commit 30ddab77e3
9 changed files with 470 additions and 82 deletions
@@ -49,7 +49,7 @@ RemoteOutputThread::~RemoteOutputThread()
void RemoteOutputThread::startWork()
{
qDebug() << "RemoteOutputThread::startWork: ";
m_udpSinkFEC.start();
m_udpSinkFEC.startSender();
m_maxThrottlems = 0;
m_startWaitMutex.lock();
m_elapsedTimer.start();
@@ -64,7 +64,7 @@ void RemoteOutputThread::stopWork()
qDebug() << "RemoteOutputThread::stopWork";
m_running = false;
wait();
m_udpSinkFEC.stop();
m_udpSinkFEC.stopSender();
}
void RemoteOutputThread::setSamplerate(int samplerate)