Update default threshold value.

This commit is contained in:
Kalila L 2021-02-09 00:46:46 -05:00
parent d2875c2c4f
commit 5a40007758
2 changed files with 2 additions and 2 deletions

View file

@ -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.

View file

@ -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 };