From 5a40007758f409e719134c19630565505fbe8ab1 Mon Sep 17 00:00:00 2001 From: Kalila L Date: Tue, 9 Feb 2021 00:46:46 -0500 Subject: [PATCH] Update default threshold value. --- interface/src/scripting/Audio.h | 2 +- libraries/audio-client/src/AudioClient.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/interface/src/scripting/Audio.h b/interface/src/scripting/Audio.h index 3addd6d5a4..cd1a2002ed 100644 --- a/interface/src/scripting/Audio.h +++ b/interface/src/scripting/Audio.h @@ -557,7 +557,7 @@ private: float _localInjectorGain { 0.0f }; // in dB float _systemInjectorGain { 0.0f }; // in dB float _pttOutputGainDesktop { 0.0f }; // in dB - float _noiseReductionThreshold { 0.2f }; // Match default value of AudioClient::_noiseReductionThreshold. + float _noiseReductionThreshold { 0.1f }; // Match default value of AudioClient::_noiseReductionThreshold. bool _isClipping { false }; bool _enableNoiseReduction { true }; // Match default value of AudioClient::_isNoiseGateEnabled. bool _noiseReductionAutomatic { true }; // Match default value of AudioClient::_noiseReductionAutomatic. diff --git a/libraries/audio-client/src/AudioClient.h b/libraries/audio-client/src/AudioClient.h index f101d68a0e..a5de9bd4ca 100644 --- a/libraries/audio-client/src/AudioClient.h +++ b/libraries/audio-client/src/AudioClient.h @@ -408,7 +408,7 @@ private: bool _shouldEchoToServer{ false }; bool _isNoiseGateEnabled{ true }; bool _isNoiseReductionAutomatic{ true }; - float _noiseReductionThreshold{ 0.2f }; + float _noiseReductionThreshold{ 0.1f }; bool _warnWhenMuted; bool _isAECEnabled{ true };