Bug 1724014 - Disable audio input processing when checking tab muting. r=pehrsons

Differential Revision: https://phabricator.services.mozilla.com/D126251
This commit is contained in:
Paul Adenot 2021-09-22 11:48:53 +00:00
Родитель 80886fe1fc
Коммит 26420d2dea
1 изменённых файлов: 5 добавлений и 1 удалений

Просмотреть файл

@ -32,7 +32,11 @@ runTest(async () => {
// nothing is output because the tab is muted.
DISABLE_LOOPBACK_TONE = true;
const stream = await getUserMedia({audio: true});
const stream = await getUserMedia({audio: {
noiseSuppression: false,
echoCancellation: false,
autoGainControl: false,
}});
try {
const ac = new AudioContext();
const osc = new OscillatorNode(ac);