mirror of
https://github.com/f4exb/sdrangel.git
synced 2026-06-18 13:48:37 -04:00
Fixed audio output management by deleting the QAudioOutput when it is not used anymore
This commit is contained in:
@@ -113,6 +113,8 @@ bool AudioOutput::start(int device, int rate)
|
||||
|
||||
void AudioOutput::stop()
|
||||
{
|
||||
qDebug("AudioOutput::stop");
|
||||
|
||||
QMutexLocker mutexLocker(&m_mutex);
|
||||
|
||||
if (m_audioUsageCount > 0)
|
||||
@@ -122,7 +124,7 @@ void AudioOutput::stop()
|
||||
if (m_audioUsageCount == 0)
|
||||
{
|
||||
QIODevice::close();
|
||||
// delete m_audioOutput;
|
||||
delete m_audioOutput;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user