summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorRoxie Linden <roxie@lindenlab.com>2024-02-08 18:48:36 -0800
committerRoxie Linden <roxie@lindenlab.com>2024-02-22 23:11:37 -0800
commit56b05eb9a1daef2927579408dc68dded7d0226cb (patch)
tree8c794972d41c1619d6f214587d8074b4757f12b1 /indra
parent63a4a83c1b3b8168691015fde0fd88a369c934a6 (diff)
fix rebase issue
Diffstat (limited to 'indra')
-rw-r--r--indra/llwebrtc/llwebrtc.cpp14
1 files changed, 0 insertions, 14 deletions
diff --git a/indra/llwebrtc/llwebrtc.cpp b/indra/llwebrtc/llwebrtc.cpp
index ee85a254f2..768405b75f 100644
--- a/indra/llwebrtc/llwebrtc.cpp
+++ b/indra/llwebrtc/llwebrtc.cpp
@@ -173,20 +173,6 @@ void LLWebRTCImpl::init()
updateDevices();
});
- rtc::scoped_refptr<webrtc::AudioProcessing> apm = webrtc::AudioProcessingBuilder().Create();
- webrtc::AudioProcessing::Config apm_config;
- apm_config.echo_canceller.enabled = true;
- apm_config.echo_canceller.mobile_mode = false;
- apm_config.gain_controller1.enabled = true;
- apm_config.gain_controller1.mode = webrtc::AudioProcessing::Config::GainController1::kAdaptiveAnalog;
- apm_config.gain_controller2.enabled = true;
- apm_config.high_pass_filter.enabled = true;
- apm_config.noise_suppression.enabled = true;
- apm_config.noise_suppression.level = webrtc::AudioProcessing::Config::NoiseSuppression::kVeryHigh;
- apm_config.transient_suppression.enabled = true;
- apm_config.pipeline.multi_channel_render = true;
- apm_config.pipeline.multi_channel_capture = true;
-
mWorkerThread->BlockingCall(
[this]()
{