mirror of
https://github.com/f4exb/sdrangel.git
synced 2026-05-01 11:53:58 -04:00
RemoteInput; do not stop UDP handler when stopping else it blocks the restart. Fixes issue #563
This commit is contained in:
parent
93d05214cf
commit
23351b6d94
@ -49,9 +49,10 @@ MESSAGE_CLASS_DEFINITION(RemoteInput::MsgStartStop, Message)
|
||||
RemoteInput::RemoteInput(DeviceAPI *deviceAPI) :
|
||||
m_deviceAPI(deviceAPI),
|
||||
m_sampleRate(48000),
|
||||
m_mutex(QMutex::Recursive),
|
||||
m_fileSink(nullptr),
|
||||
m_settings(),
|
||||
m_remoteInputUDPHandler(0),
|
||||
m_remoteInputUDPHandler(nullptr),
|
||||
m_deviceDescription(),
|
||||
m_startingTimeStamp(0)
|
||||
{
|
||||
@ -100,7 +101,6 @@ bool RemoteInput::start()
|
||||
void RemoteInput::stop()
|
||||
{
|
||||
qDebug() << "RemoteInput::stop";
|
||||
m_remoteInputUDPHandler->stop();
|
||||
}
|
||||
|
||||
QByteArray RemoteInput::serialize() const
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user