mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-06-27 08:18:48 +02:00
if audio is muted don't loopback local audio, fixes #1561
This commit is contained in:
parent
e538b4cd8d
commit
0ddf9520dd
1 changed files with 1 additions and 1 deletions
|
@ -297,7 +297,7 @@ void Audio::handleAudioInput() {
|
||||||
|
|
||||||
QByteArray inputByteArray = _inputDevice->readAll();
|
QByteArray inputByteArray = _inputDevice->readAll();
|
||||||
|
|
||||||
if (Menu::getInstance()->isOptionChecked(MenuOption::EchoLocalAudio)) {
|
if (Menu::getInstance()->isOptionChecked(MenuOption::EchoLocalAudio) && !_muted) {
|
||||||
// if this person wants local loopback add that to the locally injected audio
|
// if this person wants local loopback add that to the locally injected audio
|
||||||
|
|
||||||
if (!_loopbackOutputDevice) {
|
if (!_loopbackOutputDevice) {
|
||||||
|
|
Loading…
Reference in a new issue