PulseAudio Marge Bot pushed to branch master at PulseAudio / pulseaudio
Commits: 3b09ca3a by Arun Raghavan at 2024-06-25T15:35:42-04:00 echo-cancel: Fix multichannel processing Missed the new parameters in the webrtc-audio-processing 1.0 move. Part-of: <https://gitlab.freedesktop.org/pulseaudio/pulseaudio/-/merge_requests/823> - - - - - 1 changed file: - src/modules/echo-cancel/webrtc.cc Changes: ===================================== src/modules/echo-cancel/webrtc.cc ===================================== @@ -242,6 +242,8 @@ bool pa_webrtc_ec_init(pa_core *c, pa_echo_canceller *ec, config.high_pass_filter.enabled = false; config.echo_canceller.enabled = true; + config.pipeline.multi_channel_capture = rec_ss->channels > 1; + config.pipeline.multi_channel_render = play_ss->channels > 1; if (!mobile) config.echo_canceller.mobile_mode = false; View it on GitLab: https://gitlab.freedesktop.org/pulseaudio/pulseaudio/-/commit/3b09ca3a15d9dd40204cb84b73f20a261b5306df -- View it on GitLab: https://gitlab.freedesktop.org/pulseaudio/pulseaudio/-/commit/3b09ca3a15d9dd40204cb84b73f20a261b5306df You're receiving this email because of your account on gitlab.freedesktop.org.
