Skip to content

Commit a7fec93

Browse files
committed
Revert "fix(audio): use device defaults"
This reverts commit 9c3834e.
1 parent 38979e4 commit a7fec93

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

frontend/src/composables/useMeetingLogic.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,11 @@ export function useMeetingLogic(meetingState, meetingId, options = {}) {
308308
const buildMediaConstraints = async (videoEnabled, audioEnabled) => {
309309
const constraints = {};
310310

311-
const audioConstraints = {};
311+
const audioConstraints = {
312+
echoCancellation: true,
313+
noiseSuppression: true,
314+
autoGainControl: true,
315+
};
312316

313317
if (videoEnabled) {
314318
constraints.video = {

0 commit comments

Comments
 (0)