mirror of
https://github.com/f4exb/sdrangel.git
synced 2025-04-13 15:08:40 -04:00
Fix default audio boolean mark
This commit is contained in:
parent
eef0084a6e
commit
ce3e78322b
@ -502,7 +502,7 @@ void AudioDeviceManager::startAudioOutput(int outputDeviceIndex)
|
||||
m_audioOutputInfos[deviceName].udpChannelMode = udpChannelMode;
|
||||
m_audioOutputInfos[deviceName].udpChannelCodec = udpChannelCodec;
|
||||
m_audioOutputInfos[deviceName].udpDecimationFactor = decimationFactor;
|
||||
m_defaultOutputStarted = (outputDeviceIndex == -1);
|
||||
m_defaultOutputStarted |= (outputDeviceIndex == -1);
|
||||
}
|
||||
else
|
||||
{
|
||||
@ -540,7 +540,7 @@ void AudioDeviceManager::startAudioInput(int inputDeviceIndex)
|
||||
|
||||
m_audioInputs[inputDeviceIndex]->setVolume(volume);
|
||||
m_audioInputInfos[deviceName].volume = volume;
|
||||
m_defaultInputStarted = (inputDeviceIndex == -1);
|
||||
m_defaultInputStarted |= (inputDeviceIndex == -1);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user