mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-26 01:39:05 -05:00
RemoteInput; do not stop UDP handler when stopping else it blocks the restart. Fixes issue #563
This commit is contained in:
parent
57cd14c8e1
commit
d93651dedb
@ -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)
|
||||
{
|
||||
@ -97,7 +98,6 @@ bool RemoteInput::start()
|
||||
void RemoteInput::stop()
|
||||
{
|
||||
qDebug() << "RemoteInput::stop";
|
||||
m_remoteInputUDPHandler->stop();
|
||||
}
|
||||
|
||||
QByteArray RemoteInput::serialize() const
|
||||
|
Loading…
Reference in New Issue
Block a user