mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-25 17:14:59 +02:00
the test-audio button causes a local audio-loopback rather than a server one
This commit is contained in:
parent
1d5f9cc0ec
commit
7d21222232
1 changed files with 2 additions and 2 deletions
|
@ -21,13 +21,13 @@ RowLayout {
|
|||
function startAudioLoopback() {
|
||||
if (!audioLoopedBack) {
|
||||
audioLoopedBack = true;
|
||||
AudioScriptingInterface.setServerEcho(true);
|
||||
AudioScriptingInterface.setLocalEcho(true);
|
||||
}
|
||||
}
|
||||
function stopAudioLoopback() {
|
||||
if (audioLoopedBack) {
|
||||
audioLoopedBack = false;
|
||||
AudioScriptingInterface.setServerEcho(false);
|
||||
AudioScriptingInterface.setLocalEcho(false);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue