Implement InputVolumeController

Implement InputVolumeController and RecommendedInputVolumeEstimator based on the copy of agc classes AgcManagerDirect and MonoAgc.
Copies of the original files created in https://webrtc-review.googlesource.com/c/src/+/278624.

Bug: webrtc:7494
Change-Id: I74acee57b0db5cc8a6b666be9ba619c6c98a1773
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/278625
Reviewed-by: Alessio Bazzica <alessiob@webrtc.org>
Commit-Queue: Hanna Silen <silen@webrtc.org>
Reviewed-by: Per Åhgren <peah@webrtc.org>
Cr-Commit-Position: refs/heads/main@{#38533}
This commit is contained in:
Hanna Silen
2022-11-01 17:17:54 +01:00
committed by WebRTC LUCI CQ
parent adbcbf73fa
commit 9f06ef1cc3
6 changed files with 348 additions and 1160 deletions

View File

@ -187,36 +187,6 @@ rtc_library("input_volume_controller") {
sources = [ sources = [
"input_volume_controller.cc", "input_volume_controller.cc",
"input_volume_controller.h", "input_volume_controller.h",
]
configs += [ "..:apm_debug_dump" ]
deps = [
":clipping_predictor",
":gain_map",
"..:api",
"..:apm_logging",
"..:audio_buffer",
"..:audio_frame_view",
"../../../api:array_view",
"../../../common_audio",
"../../../common_audio:common_audio_c",
"../../../rtc_base:checks",
"../../../rtc_base:gtest_prod",
"../../../rtc_base:logging",
"../../../rtc_base:safe_minmax",
"../../../system_wrappers:field_trial",
"../../../system_wrappers:metrics",
"../agc:gain_control_interface",
"../agc:level_estimation",
"../vad",
]
absl_deps = [ "//third_party/abseil-cpp/absl/types:optional" ]
}
rtc_library("speech_probability_buffer") {
sources = [
"speech_probability_buffer.cc", "speech_probability_buffer.cc",
"speech_probability_buffer.h", "speech_probability_buffer.h",
] ]
@ -226,10 +196,26 @@ rtc_library("speech_probability_buffer") {
"./*", "./*",
] ]
configs += [ "..:apm_debug_dump" ]
deps = [ deps = [
":clipping_predictor",
":gain_map",
"..:api",
"..:audio_buffer",
"..:audio_frame_view",
"../../../api:array_view",
"../../../rtc_base:checks",
"../../../rtc_base:checks", "../../../rtc_base:checks",
"../../../rtc_base:gtest_prod", "../../../rtc_base:gtest_prod",
"../../../rtc_base:gtest_prod",
"../../../rtc_base:logging",
"../../../rtc_base:safe_minmax",
"../../../system_wrappers:field_trial",
"../../../system_wrappers:metrics",
] ]
absl_deps = [ "//third_party/abseil-cpp/absl/types:optional" ]
} }
rtc_library("noise_level_estimator") { rtc_library("noise_level_estimator") {
@ -381,6 +367,7 @@ rtc_library("input_volume_controller_unittests") {
sources = [ sources = [
"clipping_predictor_level_buffer_unittest.cc", "clipping_predictor_level_buffer_unittest.cc",
"clipping_predictor_unittest.cc", "clipping_predictor_unittest.cc",
"input_volume_controller_unittest.cc",
"speech_probability_buffer_unittest.cc", "speech_probability_buffer_unittest.cc",
] ]
@ -389,11 +376,19 @@ rtc_library("input_volume_controller_unittests") {
deps = [ deps = [
":clipping_predictor", ":clipping_predictor",
":gain_map", ":gain_map",
":speech_probability_buffer", ":input_volume_controller",
"..:api",
"../../../api:array_view",
"../../../rtc_base:checks", "../../../rtc_base:checks",
"../../../rtc_base:random", "../../../rtc_base:random",
"../../../rtc_base:safe_conversions", "../../../rtc_base:safe_conversions",
"../../../rtc_base:safe_minmax",
"../../../rtc_base:stringutils",
"../../../system_wrappers:metrics",
"../../../test:field_trial",
"../../../test:fileutils",
"../../../test:test_support", "../../../test:test_support",
"//testing/gtest",
] ]
absl_deps = [ "//third_party/abseil-cpp/absl/types:optional" ] absl_deps = [ "//third_party/abseil-cpp/absl/types:optional" ]

View File

@ -14,8 +14,6 @@
#include <cmath> #include <cmath>
#include "api/array_view.h" #include "api/array_view.h"
#include "common_audio/include/audio_util.h"
#include "modules/audio_processing/agc/gain_control.h"
#include "modules/audio_processing/agc2/gain_map_internal.h" #include "modules/audio_processing/agc2/gain_map_internal.h"
#include "modules/audio_processing/include/audio_frame_view.h" #include "modules/audio_processing/include/audio_frame_view.h"
#include "rtc_base/checks.h" #include "rtc_base/checks.h"
@ -32,12 +30,6 @@ namespace {
// quantization) before we assume the user has manually adjusted the microphone. // quantization) before we assume the user has manually adjusted the microphone.
constexpr int kLevelQuantizationSlack = 25; constexpr int kLevelQuantizationSlack = 25;
constexpr int kDefaultCompressionGain = 7;
constexpr int kMaxCompressionGain = 12;
constexpr int kMinCompressionGain = 2;
// Controls the rate of compression changes towards the target.
constexpr float kCompressionGainStep = 0.05f;
constexpr int kMaxMicLevel = 255; constexpr int kMaxMicLevel = 255;
static_assert(kGainMapSize > kMaxMicLevel, "gain map too small"); static_assert(kGainMapSize > kMaxMicLevel, "gain map too small");
constexpr int kMinMicLevel = 12; constexpr int kMinMicLevel = 12;
@ -45,23 +37,25 @@ constexpr int kMinMicLevel = 12;
// Prevent very large microphone level changes. // Prevent very large microphone level changes.
constexpr int kMaxResidualGainChange = 15; constexpr int kMaxResidualGainChange = 15;
// Maximum additional gain allowed to compensate for microphone level
// restrictions from clipping events.
constexpr int kSurplusCompressionGain = 6;
// Target speech level (dBFs) and speech probability threshold used to compute // Target speech level (dBFs) and speech probability threshold used to compute
// the RMS error override in `GetSpeechLevelErrorDb()`. These are only used for // the RMS error in `GetSpeechLevelErrorDb()`.
// computing the error override and they are not passed to `agc_`. // TODO(webrtc:7494): Move these to a config and pass in the ctor with
// TODO(webrtc:7494): Move these to a config and pass in the ctor. // kOverrideWaitFrames = 100.
constexpr float kOverrideTargetSpeechLevelDbfs = -18.0f; constexpr float kOverrideTargetSpeechLevelDbfs = -18.0f;
constexpr float kOverrideSpeechProbabilitySilenceThreshold = 0.5f; constexpr float kOverrideSpeechProbabilitySilenceThreshold = 0.5f;
// The minimum number of frames between `UpdateGain()` calls.
// TODO(webrtc:7494): Move this to a config and pass in the ctor with
// kOverrideWaitFrames = 100. Default value zero needed for the unit tests.
constexpr int kOverrideWaitFrames = 0; constexpr int kOverrideWaitFrames = 0;
using AnalogAgcConfig = using Agc1ClippingPredictorConfig = AudioProcessing::Config::GainController1::
AudioProcessing::Config::GainController1::AnalogGainController; AnalogGainController::ClippingPredictor;
// TODO(webrtc:7494): Hardcode clipping predictor parameters and remove this
// function after no longer needed in the ctor.
Agc1ClippingPredictorConfig CreateClippingPredictorConfig(bool enabled) {
Agc1ClippingPredictorConfig config;
config.enabled = enabled;
return config;
}
// Returns whether a fall-back solution to choose the maximum level should be // Returns whether a fall-back solution to choose the maximum level should be
// chosen. // chosen.
@ -169,42 +163,33 @@ int GetSpeechLevelErrorDb(float speech_level_dbfs, float speech_probability) {
} // namespace } // namespace
RecommendedInputVolumeEstimator::RecommendedInputVolumeEstimator( MonoInputVolumeController::MonoInputVolumeController(
ApmDataDumper* data_dumper,
int startup_min_level, int startup_min_level,
int clipped_level_min, int clipped_level_min,
bool disable_digital_adaptive, bool disable_digital_adaptive,
int min_mic_level) int min_mic_level,
int max_digital_gain_db,
int min_digital_gain_db)
: min_mic_level_(min_mic_level), : min_mic_level_(min_mic_level),
disable_digital_adaptive_(disable_digital_adaptive), disable_digital_adaptive_(disable_digital_adaptive),
agc_(std::make_unique<Agc>()), max_digital_gain_db_(max_digital_gain_db),
min_digital_gain_db_(min_digital_gain_db),
max_level_(kMaxMicLevel), max_level_(kMaxMicLevel),
max_compression_gain_(kMaxCompressionGain),
target_compression_(kDefaultCompressionGain),
compression_(target_compression_),
compression_accumulator_(compression_),
startup_min_level_(ClampLevel(startup_min_level, min_mic_level_)), startup_min_level_(ClampLevel(startup_min_level, min_mic_level_)),
clipped_level_min_(clipped_level_min) {} clipped_level_min_(clipped_level_min) {}
RecommendedInputVolumeEstimator::~RecommendedInputVolumeEstimator() = default; MonoInputVolumeController::~MonoInputVolumeController() = default;
void RecommendedInputVolumeEstimator::Initialize() { void MonoInputVolumeController::Initialize() {
max_level_ = kMaxMicLevel; max_level_ = kMaxMicLevel;
max_compression_gain_ = kMaxCompressionGain;
target_compression_ = disable_digital_adaptive_ ? 0 : kDefaultCompressionGain;
compression_ = disable_digital_adaptive_ ? 0 : target_compression_;
compression_accumulator_ = compression_;
capture_output_used_ = true; capture_output_used_ = true;
check_volume_on_next_process_ = true; check_volume_on_next_process_ = true;
frames_since_update_gain_ = 0; frames_since_update_gain_ = 0;
is_first_frame_ = true; is_first_frame_ = true;
} }
void RecommendedInputVolumeEstimator::Process( void MonoInputVolumeController::Process(
rtc::ArrayView<const int16_t> audio,
absl::optional<int> rms_error_override) { absl::optional<int> rms_error_override) {
new_compression_to_set_ = absl::nullopt;
if (check_volume_on_next_process_) { if (check_volume_on_next_process_) {
check_volume_on_next_process_ = false; check_volume_on_next_process_ = false;
// We have to wait until the first process call to check the volume, // We have to wait until the first process call to check the volume,
@ -212,14 +197,8 @@ void RecommendedInputVolumeEstimator::Process(
CheckVolumeAndReset(); CheckVolumeAndReset();
} }
agc_->Process(audio);
// Always check if `agc_` has a new error available. If yes, `agc_` gets
// reset.
// TODO(webrtc:7494) Replace the `agc_` call `GetRmsErrorDb()` with `Reset()`
// if an error override is used.
int rms_error = 0; int rms_error = 0;
bool update_gain = agc_->GetRmsErrorDb(&rms_error); bool update_gain = false;
if (rms_error_override.has_value()) { if (rms_error_override.has_value()) {
if (is_first_frame_ || frames_since_update_gain_ < kOverrideWaitFrames) { if (is_first_frame_ || frames_since_update_gain_ < kOverrideWaitFrames) {
update_gain = false; update_gain = false;
@ -233,17 +212,13 @@ void RecommendedInputVolumeEstimator::Process(
UpdateGain(rms_error); UpdateGain(rms_error);
} }
if (!disable_digital_adaptive_) {
UpdateCompressor();
}
is_first_frame_ = false; is_first_frame_ = false;
if (frames_since_update_gain_ < kOverrideWaitFrames) { if (frames_since_update_gain_ < kOverrideWaitFrames) {
++frames_since_update_gain_; ++frames_since_update_gain_;
} }
} }
void RecommendedInputVolumeEstimator::HandleClipping(int clipped_level_step) { void MonoInputVolumeController::HandleClipping(int clipped_level_step) {
RTC_DCHECK_GT(clipped_level_step, 0); RTC_DCHECK_GT(clipped_level_step, 0);
// Always decrease the maximum level, even if the current level is below // Always decrease the maximum level, even if the current level is below
// threshold. // threshold.
@ -257,14 +232,12 @@ void RecommendedInputVolumeEstimator::HandleClipping(int clipped_level_step) {
// a consequence, if the user has brought the level above the limit, we // a consequence, if the user has brought the level above the limit, we
// will still not react until the postproc updates the level. // will still not react until the postproc updates the level.
SetLevel(std::max(clipped_level_min_, level_ - clipped_level_step)); SetLevel(std::max(clipped_level_min_, level_ - clipped_level_step));
// Reset the AGCs for all channels since the level has changed.
agc_->Reset();
frames_since_update_gain_ = 0; frames_since_update_gain_ = 0;
is_first_frame_ = false; is_first_frame_ = false;
} }
} }
void RecommendedInputVolumeEstimator::SetLevel(int new_level) { void MonoInputVolumeController::SetLevel(int new_level) {
int voe_level = recommended_input_volume_; int voe_level = recommended_input_volume_;
if (voe_level == 0) { if (voe_level == 0) {
RTC_DLOG(LS_INFO) RTC_DLOG(LS_INFO)
@ -292,9 +265,7 @@ void RecommendedInputVolumeEstimator::SetLevel(int new_level) {
SetMaxLevel(level_); SetMaxLevel(level_);
} }
// Take no action in this case, since we can't be sure when the volume // Take no action in this case, since we can't be sure when the volume
// was manually adjusted. The compressor will still provide some of the // was manually adjusted.
// desired gain change.
agc_->Reset();
frames_since_update_gain_ = 0; frames_since_update_gain_ = 0;
is_first_frame_ = false; is_first_frame_ = false;
return; return;
@ -311,21 +282,13 @@ void RecommendedInputVolumeEstimator::SetLevel(int new_level) {
level_ = new_level; level_ = new_level;
} }
void RecommendedInputVolumeEstimator::SetMaxLevel(int level) { void MonoInputVolumeController::SetMaxLevel(int level) {
RTC_DCHECK_GE(level, clipped_level_min_); RTC_DCHECK_GE(level, clipped_level_min_);
max_level_ = level; max_level_ = level;
// Scale the `kSurplusCompressionGain` linearly across the restricted RTC_DLOG(LS_INFO) << "[agc] max_level_=" << max_level_;
// level range.
max_compression_gain_ =
kMaxCompressionGain + std::floor((1.f * kMaxMicLevel - max_level_) /
(kMaxMicLevel - clipped_level_min_) *
kSurplusCompressionGain +
0.5f);
RTC_DLOG(LS_INFO) << "[agc] max_level_=" << max_level_
<< ", max_compression_gain_=" << max_compression_gain_;
} }
void RecommendedInputVolumeEstimator::HandleCaptureOutputUsedChange( void MonoInputVolumeController::HandleCaptureOutputUsedChange(
bool capture_output_used) { bool capture_output_used) {
if (capture_output_used_ == capture_output_used) { if (capture_output_used_ == capture_output_used) {
return; return;
@ -338,7 +301,7 @@ void RecommendedInputVolumeEstimator::HandleCaptureOutputUsedChange(
} }
} }
int RecommendedInputVolumeEstimator::CheckVolumeAndReset() { int MonoInputVolumeController::CheckVolumeAndReset() {
int level = recommended_input_volume_; int level = recommended_input_volume_;
// Reasons for taking action at startup: // Reasons for taking action at startup:
// 1) A person starting a call is expected to be heard. // 1) A person starting a call is expected to be heard.
@ -362,11 +325,12 @@ int RecommendedInputVolumeEstimator::CheckVolumeAndReset() {
RTC_DLOG(LS_INFO) << "[agc] Initial volume too low, raising to " << level; RTC_DLOG(LS_INFO) << "[agc] Initial volume too low, raising to " << level;
recommended_input_volume_ = level; recommended_input_volume_ = level;
} }
agc_->Reset();
level_ = level; level_ = level;
startup_ = false; startup_ = false;
frames_since_update_gain_ = 0; frames_since_update_gain_ = 0;
is_first_frame_ = true; is_first_frame_ = true;
return 0; return 0;
} }
@ -376,136 +340,57 @@ int RecommendedInputVolumeEstimator::CheckVolumeAndReset() {
// //
// If the slider needs to be moved, we check first if the user has adjusted // If the slider needs to be moved, we check first if the user has adjusted
// it, in which case we take no action and cache the updated level. // it, in which case we take no action and cache the updated level.
void RecommendedInputVolumeEstimator::UpdateGain(int rms_error_db) { void MonoInputVolumeController::UpdateGain(int rms_error_db) {
int rms_error = rms_error_db; int rms_error = rms_error_db;
// Always reset the counter regardless of whether the gain is changed // Always reset the counter regardless of whether the gain is changed
// or not. This matches with the bahvior of `agc_` where the histogram is // or not.
// reset every time an RMS error is successfully read.
frames_since_update_gain_ = 0; frames_since_update_gain_ = 0;
// The compressor will always add at least kMinCompressionGain. In effect, int raw_digital_gain = 0;
// this adjusts our target gain upward by the same amount and rms_error if (!disable_digital_adaptive_) {
// needs to reflect that. rms_error += min_digital_gain_db_;
rms_error += kMinCompressionGain;
// Handle as much error as possible with the compressor first. raw_digital_gain =
int raw_compression = rtc::SafeClamp(rms_error, min_digital_gain_db_, max_digital_gain_db_);
rtc::SafeClamp(rms_error, kMinCompressionGain, max_compression_gain_);
// Deemphasize the compression gain error. Move halfway between the current
// target and the newly received target. This serves to soften perceptible
// intra-talkspurt adjustments, at the cost of some adaptation speed.
if ((raw_compression == max_compression_gain_ &&
target_compression_ == max_compression_gain_ - 1) ||
(raw_compression == kMinCompressionGain &&
target_compression_ == kMinCompressionGain + 1)) {
// Special case to allow the target to reach the endpoints of the
// compression range. The deemphasis would otherwise halt it at 1 dB shy.
target_compression_ = raw_compression;
} else {
target_compression_ =
(raw_compression - target_compression_) / 2 + target_compression_;
} }
// Residual error will be handled by adjusting the volume slider. Use the
// raw rather than deemphasized compression here as we would otherwise
// shrink the amount of slack the compressor provides.
const int residual_gain = const int residual_gain =
rtc::SafeClamp(rms_error - raw_compression, -kMaxResidualGainChange, rtc::SafeClamp(rms_error - raw_digital_gain, -kMaxResidualGainChange,
kMaxResidualGainChange); kMaxResidualGainChange);
RTC_DLOG(LS_INFO) << "[agc] rms_error=" << rms_error RTC_DLOG(LS_INFO) << "[agc] rms_error=" << rms_error
<< ", target_compression=" << target_compression_
<< ", residual_gain=" << residual_gain; << ", residual_gain=" << residual_gain;
if (residual_gain == 0)
return;
int old_level = level_; if (residual_gain == 0) {
return;
}
SetLevel(LevelFromGainError(residual_gain, level_, min_mic_level_)); SetLevel(LevelFromGainError(residual_gain, level_, min_mic_level_));
if (old_level != level_) {
// level_ was updated by SetLevel; log the new value.
RTC_HISTOGRAM_COUNTS_LINEAR("WebRTC.Audio.AgcSetLevel", level_, 1,
kMaxMicLevel, 50);
// Reset the AGC since the level has changed.
agc_->Reset();
}
}
void RecommendedInputVolumeEstimator::UpdateCompressor() {
calls_since_last_gain_log_++;
if (calls_since_last_gain_log_ == 100) {
calls_since_last_gain_log_ = 0;
RTC_HISTOGRAM_COUNTS_LINEAR("WebRTC.Audio.Agc.DigitalGainApplied",
compression_, 0, kMaxCompressionGain,
kMaxCompressionGain + 1);
}
if (compression_ == target_compression_) {
return;
}
// Adapt the compression gain slowly towards the target, in order to avoid
// highly perceptible changes.
if (target_compression_ > compression_) {
compression_accumulator_ += kCompressionGainStep;
} else {
compression_accumulator_ -= kCompressionGainStep;
}
// The compressor accepts integer gains in dB. Adjust the gain when
// we've come within half a stepsize of the nearest integer. (We don't
// check for equality due to potential floating point imprecision).
int new_compression = compression_;
int nearest_neighbor = std::floor(compression_accumulator_ + 0.5);
if (std::fabs(compression_accumulator_ - nearest_neighbor) <
kCompressionGainStep / 2) {
new_compression = nearest_neighbor;
}
// Set the new compression gain.
if (new_compression != compression_) {
RTC_HISTOGRAM_COUNTS_LINEAR("WebRTC.Audio.Agc.DigitalGainUpdated",
new_compression, 0, kMaxCompressionGain,
kMaxCompressionGain + 1);
compression_ = new_compression;
compression_accumulator_ = new_compression;
new_compression_to_set_ = compression_;
}
} }
std::atomic<int> InputVolumeController::instance_counter_(0); std::atomic<int> InputVolumeController::instance_counter_(0);
InputVolumeController::InputVolumeController( InputVolumeController::InputVolumeController(int num_capture_channels,
const AudioProcessing::Config::GainController1::AnalogGainController& const Config& config)
analog_config, : analog_controller_enabled_(config.enabled),
Agc* agc)
: InputVolumeController(/*num_capture_channels=*/1, analog_config) {
RTC_DCHECK(channel_agcs_[0]);
RTC_DCHECK(agc);
channel_agcs_[0]->set_agc(agc);
}
InputVolumeController::InputVolumeController(
int num_capture_channels,
const AnalogAgcConfig& analog_config)
: analog_controller_enabled_(analog_config.enabled),
min_mic_level_override_(GetMinMicLevelOverride()), min_mic_level_override_(GetMinMicLevelOverride()),
data_dumper_(new ApmDataDumper(instance_counter_.fetch_add(1) + 1)),
use_min_channel_level_(!UseMaxAnalogChannelLevel()), use_min_channel_level_(!UseMaxAnalogChannelLevel()),
num_capture_channels_(num_capture_channels), num_capture_channels_(num_capture_channels),
disable_digital_adaptive_(!analog_config.enable_digital_adaptive), disable_digital_adaptive_(!config.digital_adaptive_follows),
frames_since_clipped_(analog_config.clipped_wait_frames), frames_since_clipped_(config.clipped_wait_frames),
capture_output_used_(true), capture_output_used_(true),
clipped_level_step_(analog_config.clipped_level_step), clipped_level_step_(config.clipped_level_step),
clipped_ratio_threshold_(analog_config.clipped_ratio_threshold), clipped_ratio_threshold_(config.clipped_ratio_threshold),
clipped_wait_frames_(analog_config.clipped_wait_frames), clipped_wait_frames_(config.clipped_wait_frames),
channel_agcs_(num_capture_channels), channel_controllers_(num_capture_channels),
new_compressions_to_set_(num_capture_channels), clipping_predictor_(CreateClippingPredictor(
clipping_predictor_( num_capture_channels,
CreateClippingPredictor(num_capture_channels, CreateClippingPredictorConfig(config.enable_clipping_predictor))),
analog_config.clipping_predictor)),
use_clipping_predictor_step_( use_clipping_predictor_step_(
!!clipping_predictor_ && !!clipping_predictor_ &&
analog_config.clipping_predictor.use_predicted_step), CreateClippingPredictorConfig(config.enable_clipping_predictor)
.use_predicted_step),
clipping_rate_log_(0.0f), clipping_rate_log_(0.0f),
clipping_rate_log_counter_(0) { clipping_rate_log_counter_(0) {
RTC_LOG(LS_INFO) << "[agc] analog controller enabled: " RTC_LOG(LS_INFO) << "[agc] analog controller enabled: "
@ -515,32 +400,30 @@ InputVolumeController::InputVolumeController(
<< " (overridden: " << " (overridden: "
<< (min_mic_level_override_.has_value() ? "yes" : "no") << (min_mic_level_override_.has_value() ? "yes" : "no")
<< ")"; << ")";
RTC_LOG(LS_INFO) << "[agc] Startup min volume: " RTC_LOG(LS_INFO) << "[agc] Startup min volume: " << config.startup_min_volume;
<< analog_config.startup_min_volume;
for (size_t ch = 0; ch < channel_agcs_.size(); ++ch) {
ApmDataDumper* data_dumper_ch = ch == 0 ? data_dumper_.get() : nullptr;
channel_agcs_[ch] = std::make_unique<RecommendedInputVolumeEstimator>( for (auto& controller : channel_controllers_) {
data_dumper_ch, analog_config.startup_min_volume, controller = std::make_unique<MonoInputVolumeController>(
analog_config.clipped_level_min, disable_digital_adaptive_, config.startup_min_volume, config.clipped_level_min,
min_mic_level); disable_digital_adaptive_, min_mic_level, config.max_digital_gain_db,
config.min_digital_gain_db);
} }
RTC_DCHECK(!channel_agcs_.empty());
RTC_DCHECK(!channel_controllers_.empty());
RTC_DCHECK_GT(clipped_level_step_, 0); RTC_DCHECK_GT(clipped_level_step_, 0);
RTC_DCHECK_LE(clipped_level_step_, 255); RTC_DCHECK_LE(clipped_level_step_, 255);
RTC_DCHECK_GT(clipped_ratio_threshold_, 0.0f); RTC_DCHECK_GT(clipped_ratio_threshold_, 0.0f);
RTC_DCHECK_LT(clipped_ratio_threshold_, 1.0f); RTC_DCHECK_LT(clipped_ratio_threshold_, 1.0f);
RTC_DCHECK_GT(clipped_wait_frames_, 0); RTC_DCHECK_GT(clipped_wait_frames_, 0);
channel_agcs_[0]->ActivateLogging(); channel_controllers_[0]->ActivateLogging();
} }
InputVolumeController::~InputVolumeController() {} InputVolumeController::~InputVolumeController() {}
void InputVolumeController::Initialize() { void InputVolumeController::Initialize() {
RTC_DLOG(LS_INFO) << "InputVolumeController::Initialize"; RTC_DLOG(LS_INFO) << "InputVolumeController::Initialize";
data_dumper_->InitiateNewSetOfRecordings(); for (auto& controller : channel_controllers_) {
for (size_t ch = 0; ch < channel_agcs_.size(); ++ch) { controller->Initialize();
channel_agcs_[ch]->Initialize();
} }
capture_output_used_ = true; capture_output_used_ = true;
@ -549,26 +432,6 @@ void InputVolumeController::Initialize() {
clipping_rate_log_counter_ = 0; clipping_rate_log_counter_ = 0;
} }
void InputVolumeController::SetupDigitalGainControl(
GainControl& gain_control) const {
if (gain_control.set_mode(GainControl::kFixedDigital) != 0) {
RTC_LOG(LS_ERROR) << "set_mode(GainControl::kFixedDigital) failed.";
}
const int target_level_dbfs = disable_digital_adaptive_ ? 0 : 2;
if (gain_control.set_target_level_dbfs(target_level_dbfs) != 0) {
RTC_LOG(LS_ERROR) << "set_target_level_dbfs() failed.";
}
const int compression_gain_db =
disable_digital_adaptive_ ? 0 : kDefaultCompressionGain;
if (gain_control.set_compression_gain_db(compression_gain_db) != 0) {
RTC_LOG(LS_ERROR) << "set_compression_gain_db() failed.";
}
const bool enable_limiter = !disable_digital_adaptive_;
if (gain_control.enable_limiter(enable_limiter) != 0) {
RTC_LOG(LS_ERROR) << "enable_limiter() failed.";
}
}
void InputVolumeController::AnalyzePreProcess(const AudioBuffer& audio_buffer) { void InputVolumeController::AnalyzePreProcess(const AudioBuffer& audio_buffer) {
const float* const* audio = audio_buffer.channels_const(); const float* const* audio = audio_buffer.channels_const();
size_t samples_per_channel = audio_buffer.num_frames(); size_t samples_per_channel = audio_buffer.num_frames();
@ -585,15 +448,13 @@ void InputVolumeController::AnalyzePreProcess(const AudioBuffer& audio_buffer) {
clipping_predictor_->Analyze(frame); clipping_predictor_->Analyze(frame);
} }
// Check for clipped samples, as the AGC has difficulty detecting pitch // Check for clipped samples. We do this in the preprocessing phase in order
// under clipping distortion. We do this in the preprocessing phase in order
// to catch clipped echo as well. // to catch clipped echo as well.
// //
// If we find a sufficiently clipped frame, drop the current microphone level // If we find a sufficiently clipped frame, drop the current microphone level
// and enforce a new maximum level, dropped the same amount from the current // and enforce a new maximum level, dropped the same amount from the current
// maximum. This harsh treatment is an effort to avoid repeated clipped echo // maximum. This harsh treatment is an effort to avoid repeated clipped echo
// events. As compensation for this restriction, the maximum compression // events.
// gain is increased, through SetMaxLevel().
float clipped_ratio = float clipped_ratio =
ComputeClippedRatio(audio, num_capture_channels_, samples_per_channel); ComputeClippedRatio(audio, num_capture_channels_, samples_per_channel);
clipping_rate_log_ = std::max(clipped_ratio, clipping_rate_log_); clipping_rate_log_ = std::max(clipped_ratio, clipping_rate_log_);
@ -617,7 +478,7 @@ void InputVolumeController::AnalyzePreProcess(const AudioBuffer& audio_buffer) {
for (int channel = 0; channel < num_capture_channels_; ++channel) { for (int channel = 0; channel < num_capture_channels_; ++channel) {
const auto step = clipping_predictor_->EstimateClippedLevelStep( const auto step = clipping_predictor_->EstimateClippedLevelStep(
channel, recommended_input_volume_, clipped_level_step_, channel, recommended_input_volume_, clipped_level_step_,
channel_agcs_[channel]->min_mic_level(), kMaxMicLevel); channel_controllers_[channel]->min_mic_level(), kMaxMicLevel);
if (step.has_value()) { if (step.has_value()) {
predicted_step = std::max(predicted_step, step.value()); predicted_step = std::max(predicted_step, step.value());
clipping_predicted = true; clipping_predicted = true;
@ -638,7 +499,7 @@ void InputVolumeController::AnalyzePreProcess(const AudioBuffer& audio_buffer) {
} }
if (clipping_detected || if (clipping_detected ||
(clipping_predicted && use_clipping_predictor_step_)) { (clipping_predicted && use_clipping_predictor_step_)) {
for (auto& state_ch : channel_agcs_) { for (auto& state_ch : channel_controllers_) {
state_ch->HandleClipping(step); state_ch->HandleClipping(step);
} }
frames_since_clipped_ = 0; frames_since_clipped_ = 0;
@ -649,13 +510,7 @@ void InputVolumeController::AnalyzePreProcess(const AudioBuffer& audio_buffer) {
AggregateChannelLevels(); AggregateChannelLevels();
} }
void InputVolumeController::Process(const AudioBuffer& audio_buffer) { void InputVolumeController::Process(absl::optional<float> speech_probability,
Process(audio_buffer, /*speech_probability=*/absl::nullopt,
/*speech_level_dbfs=*/absl::nullopt);
}
void InputVolumeController::Process(const AudioBuffer& audio_buffer,
absl::optional<float> speech_probability,
absl::optional<float> speech_level_dbfs) { absl::optional<float> speech_level_dbfs) {
AggregateChannelLevels(); AggregateChannelLevels();
@ -663,53 +518,34 @@ void InputVolumeController::Process(const AudioBuffer& audio_buffer,
return; return;
} }
const size_t num_frames_per_band = audio_buffer.num_frames_per_band(); absl::optional<int> rms_error_override;
absl::optional<int> rms_error_override = absl::nullopt;
if (speech_probability.has_value() && speech_level_dbfs.has_value()) { if (speech_probability.has_value() && speech_level_dbfs.has_value()) {
rms_error_override = rms_error_override =
GetSpeechLevelErrorDb(*speech_level_dbfs, *speech_probability); GetSpeechLevelErrorDb(*speech_level_dbfs, *speech_probability);
} }
for (size_t ch = 0; ch < channel_agcs_.size(); ++ch) {
std::array<int16_t, AudioBuffer::kMaxSampleRate / 100> audio_data; for (auto& controller : channel_controllers_) {
int16_t* audio_use = audio_data.data(); controller->Process(rms_error_override);
FloatS16ToS16(audio_buffer.split_bands_const_f(ch)[0], num_frames_per_band,
audio_use);
channel_agcs_[ch]->Process({audio_use, num_frames_per_band},
rms_error_override);
new_compressions_to_set_[ch] = channel_agcs_[ch]->new_compression();
} }
AggregateChannelLevels(); AggregateChannelLevels();
} }
absl::optional<int> InputVolumeController::GetDigitalComressionGain() {
return new_compressions_to_set_[channel_controlling_gain_];
}
void InputVolumeController::HandleCaptureOutputUsedChange( void InputVolumeController::HandleCaptureOutputUsedChange(
bool capture_output_used) { bool capture_output_used) {
for (size_t ch = 0; ch < channel_agcs_.size(); ++ch) { for (auto& controller : channel_controllers_) {
channel_agcs_[ch]->HandleCaptureOutputUsedChange(capture_output_used); controller->HandleCaptureOutputUsedChange(capture_output_used);
} }
capture_output_used_ = capture_output_used; capture_output_used_ = capture_output_used;
} }
float InputVolumeController::voice_probability() const {
float max_prob = 0.f;
for (const auto& state_ch : channel_agcs_) {
max_prob = std::max(max_prob, state_ch->voice_probability());
}
return max_prob;
}
void InputVolumeController::set_stream_analog_level(int level) { void InputVolumeController::set_stream_analog_level(int level) {
if (!analog_controller_enabled_) { if (!analog_controller_enabled_) {
recommended_input_volume_ = level; recommended_input_volume_ = level;
} }
for (size_t ch = 0; ch < channel_agcs_.size(); ++ch) { for (auto& controller : channel_controllers_) {
channel_agcs_[ch]->set_stream_analog_level(level); controller->set_stream_analog_level(level);
} }
AggregateChannelLevels(); AggregateChannelLevels();
@ -717,19 +553,19 @@ void InputVolumeController::set_stream_analog_level(int level) {
void InputVolumeController::AggregateChannelLevels() { void InputVolumeController::AggregateChannelLevels() {
int new_recommended_input_volume = int new_recommended_input_volume =
channel_agcs_[0]->recommended_analog_level(); channel_controllers_[0]->recommended_analog_level();
channel_controlling_gain_ = 0; channel_controlling_gain_ = 0;
if (use_min_channel_level_) { if (use_min_channel_level_) {
for (size_t ch = 1; ch < channel_agcs_.size(); ++ch) { for (size_t ch = 1; ch < channel_controllers_.size(); ++ch) {
int level = channel_agcs_[ch]->recommended_analog_level(); int level = channel_controllers_[ch]->recommended_analog_level();
if (level < new_recommended_input_volume) { if (level < new_recommended_input_volume) {
new_recommended_input_volume = level; new_recommended_input_volume = level;
channel_controlling_gain_ = static_cast<int>(ch); channel_controlling_gain_ = static_cast<int>(ch);
} }
} }
} else { } else {
for (size_t ch = 1; ch < channel_agcs_.size(); ++ch) { for (size_t ch = 1; ch < channel_controllers_.size(); ++ch) {
int level = channel_agcs_[ch]->recommended_analog_level(); int level = channel_controllers_[ch]->recommended_analog_level();
if (level > new_recommended_input_volume) { if (level > new_recommended_input_volume) {
new_recommended_input_volume = level; new_recommended_input_volume = level;
channel_controlling_gain_ = static_cast<int>(ch); channel_controlling_gain_ = static_cast<int>(ch);

View File

@ -17,35 +17,55 @@
#include "absl/types/optional.h" #include "absl/types/optional.h"
#include "api/array_view.h" #include "api/array_view.h"
#include "modules/audio_processing/agc/agc.h"
#include "modules/audio_processing/agc2/clipping_predictor.h" #include "modules/audio_processing/agc2/clipping_predictor.h"
#include "modules/audio_processing/audio_buffer.h" #include "modules/audio_processing/audio_buffer.h"
#include "modules/audio_processing/include/audio_processing.h" #include "modules/audio_processing/include/audio_processing.h"
#include "modules/audio_processing/logging/apm_data_dumper.h"
#include "rtc_base/gtest_prod_util.h" #include "rtc_base/gtest_prod_util.h"
namespace webrtc { namespace webrtc {
class RecommendedInputVolumeEstimator; class MonoInputVolumeController;
class GainControl;
// Adaptive Gain Controller (AGC) that controls the input volume and a digital // Input volume controller that controls the input volume. The input volume
// gain. The input volume controller recommends what volume to use, handles // controller recommends what volume to use, handles volume changes and
// volume changes and clipping. In particular, it handles changes triggered by // clipping. In particular, it handles changes triggered by the user (e.g.,
// the user (e.g., volume set to zero by a HW mute button). The digital // volume set to zero by a HW mute button). The digital controller chooses and
// controller chooses and applies the digital compression gain. // applies the digital compression gain. This class is not thread-safe.
// This class is not thread-safe.
// TODO(bugs.webrtc.org/7494): Use applied/recommended input volume naming // TODO(bugs.webrtc.org/7494): Use applied/recommended input volume naming
// convention. // convention.
class InputVolumeController final { class InputVolumeController final {
public: public:
// Config for the constructor.
struct Config {
bool enabled = false;
// TODO(bugs.webrtc.org/1275566): Describe `startup_min_volume`.
int startup_min_volume = 0;
// Lowest analog microphone level that will be applied in response to
// clipping.
int clipped_level_min = 70;
// If true, an adaptive digital gain is applied.
bool digital_adaptive_follows = true;
// Amount the microphone level is lowered with every clipping event.
// Limited to (0, 255].
int clipped_level_step = 15;
// Proportion of clipped samples required to declare a clipping event.
// Limited to (0.f, 1.f).
float clipped_ratio_threshold = 0.1f;
// Time in frames to wait after a clipping event before checking again.
// Limited to values higher than 0.
int clipped_wait_frames = 300;
// Enables clipping prediction functionality.
bool enable_clipping_predictor = false;
// Minimum and maximum digital gain used before input volume is
// adjusted.
int max_digital_gain_db = 30;
int min_digital_gain_db = 0;
};
// Ctor. `num_capture_channels` specifies the number of channels for the audio // Ctor. `num_capture_channels` specifies the number of channels for the audio
// passed to `AnalyzePreProcess()` and `Process()`. Clamps // passed to `AnalyzePreProcess()` and `Process()`. Clamps
// `analog_config.startup_min_level` in the [12, 255] range. // `config.startup_min_level` in the [12, 255] range.
InputVolumeController( InputVolumeController(int num_capture_channels, const Config& config);
int num_capture_channels,
const AudioProcessing::Config::GainController1::AnalogGainController&
analog_config);
~InputVolumeController(); ~InputVolumeController();
InputVolumeController(const InputVolumeController&) = delete; InputVolumeController(const InputVolumeController&) = delete;
@ -53,11 +73,6 @@ class InputVolumeController final {
void Initialize(); void Initialize();
// Configures `gain_control` to work as a fixed digital controller so that the
// adaptive part is only handled by this gain controller. Must be called if
// `gain_control` is also used to avoid the side-effects of running two AGCs.
void SetupDigitalGainControl(GainControl& gain_control) const;
// Sets the applied input volume. // Sets the applied input volume.
void set_stream_analog_level(int level); void set_stream_analog_level(int level);
@ -69,20 +84,13 @@ class InputVolumeController final {
// prediction (if enabled). Must be called after `set_stream_analog_level()`. // prediction (if enabled). Must be called after `set_stream_analog_level()`.
void AnalyzePreProcess(const AudioBuffer& audio_buffer); void AnalyzePreProcess(const AudioBuffer& audio_buffer);
// Processes `audio_buffer`. Chooses a digital compression gain and the new // Chooses a digital compression gain and the new input volume to recommend.
// input volume to recommend. Must be called after `AnalyzePreProcess()`. If // Must be called after `AnalyzePreProcess()`. `speech_probability`
// `speech_probability` (range [0.0f, 1.0f]) and `speech_level_dbfs` (range // (range [0.0f, 1.0f]) and `speech_level_dbfs` (range [-90.f, 30.0f]) are
// [-90.f, 30.0f]) are given, uses them to override the estimated RMS error. // used to compute the RMS error.
// TODO(webrtc:7494): This signature is needed for testing purposes, unify void Process(absl::optional<float> speech_probability,
// the signatures when the clean-up is done.
void Process(const AudioBuffer& audio_buffer,
absl::optional<float> speech_probability,
absl::optional<float> speech_level_dbfs); absl::optional<float> speech_level_dbfs);
// Processes `audio_buffer`. Chooses a digital compression gain and the new
// input volume to recommend. Must be called after `AnalyzePreProcess()`.
void Process(const AudioBuffer& audio_buffer);
// TODO(bugs.webrtc.org/7494): Return recommended input volume and remove // TODO(bugs.webrtc.org/7494): Return recommended input volume and remove
// `recommended_analog_level()`. // `recommended_analog_level()`.
// Returns the recommended input volume. If the input volume contoller is // Returns the recommended input volume. If the input volume contoller is
@ -138,25 +146,17 @@ class InputVolumeController final {
UnusedClippingPredictionsProduceEqualAnalogLevels); UnusedClippingPredictionsProduceEqualAnalogLevels);
FRIEND_TEST_ALL_PREFIXES(InputVolumeControllerParametrizedTest, FRIEND_TEST_ALL_PREFIXES(InputVolumeControllerParametrizedTest,
EmptyRmsErrorOverrideHasNoEffect); EmptyRmsErrorOverrideHasNoEffect);
FRIEND_TEST_ALL_PREFIXES(InputVolumeControllerParametrizedTest,
NonEmptyRmsErrorOverrideHasEffect);
// Ctor that creates a single channel AGC and by injecting `agc`.
// `agc` will be owned by this class; hence, do not delete it.
InputVolumeController(
const AudioProcessing::Config::GainController1::AnalogGainController&
analog_config,
Agc* agc);
void AggregateChannelLevels(); void AggregateChannelLevels();
const bool analog_controller_enabled_; const bool analog_controller_enabled_;
const absl::optional<int> min_mic_level_override_; const absl::optional<int> min_mic_level_override_;
std::unique_ptr<ApmDataDumper> data_dumper_;
static std::atomic<int> instance_counter_; static std::atomic<int> instance_counter_;
const bool use_min_channel_level_; const bool use_min_channel_level_;
const int num_capture_channels_; const int num_capture_channels_;
// TODO(webrtc:7494): Replace with `digital_adaptive_follows_`.
const bool disable_digital_adaptive_; const bool disable_digital_adaptive_;
int frames_since_clipped_; int frames_since_clipped_;
@ -178,8 +178,7 @@ class InputVolumeController final {
const float clipped_ratio_threshold_; const float clipped_ratio_threshold_;
const int clipped_wait_frames_; const int clipped_wait_frames_;
std::vector<std::unique_ptr<RecommendedInputVolumeEstimator>> channel_agcs_; std::vector<std::unique_ptr<MonoInputVolumeController>> channel_controllers_;
std::vector<absl::optional<int>> new_compressions_to_set_;
const std::unique_ptr<ClippingPredictor> clipping_predictor_; const std::unique_ptr<ClippingPredictor> clipping_predictor_;
const bool use_clipping_predictor_step_; const bool use_clipping_predictor_step_;
@ -189,18 +188,18 @@ class InputVolumeController final {
// TODO(bugs.webrtc.org/7494): Use applied/recommended input volume naming // TODO(bugs.webrtc.org/7494): Use applied/recommended input volume naming
// convention. // convention.
class RecommendedInputVolumeEstimator { class MonoInputVolumeController {
public: public:
RecommendedInputVolumeEstimator(ApmDataDumper* data_dumper, MonoInputVolumeController(int startup_min_level,
int startup_min_level, int clipped_level_min,
int clipped_level_min, bool disable_digital_adaptive,
bool disable_digital_adaptive, int min_mic_level,
int min_mic_level); int max_digital_gain_db,
~RecommendedInputVolumeEstimator(); int min_digital_gain_db);
RecommendedInputVolumeEstimator(const RecommendedInputVolumeEstimator&) = ~MonoInputVolumeController();
MonoInputVolumeController(const MonoInputVolumeController&) = delete;
MonoInputVolumeController& operator=(const MonoInputVolumeController&) =
delete; delete;
RecommendedInputVolumeEstimator& operator=(
const RecommendedInputVolumeEstimator&) = delete;
void Initialize(); void Initialize();
void HandleCaptureOutputUsedChange(bool capture_output_used); void HandleCaptureOutputUsedChange(bool capture_output_used);
@ -213,25 +212,16 @@ class RecommendedInputVolumeEstimator {
// `set_stream_analog_level()`. // `set_stream_analog_level()`.
void HandleClipping(int clipped_level_step); void HandleClipping(int clipped_level_step);
// Analyzes `audio`, requests the RMS error from AGC, updates the recommended // Updates the recommended input volume based on the estimated speech level
// input volume based on the estimated speech level and, if enabled, updates // RMS error. Must be called after `HandleClipping()`.
// the (digital) compression gain to be applied by `agc_`. Must be called void Process(absl::optional<int> rms_error_override);
// after `HandleClipping()`. If `rms_error_override` has a value, RMS error
// from AGC is overridden by it.
void Process(rtc::ArrayView<const int16_t> audio,
absl::optional<int> rms_error_override);
// Returns the recommended input volume. Must be called after `Process()`. // Returns the recommended input volume. Must be called after `Process()`.
int recommended_analog_level() const { return recommended_input_volume_; } int recommended_analog_level() const { return recommended_input_volume_; }
float voice_probability() const { return agc_->voice_probability(); }
void ActivateLogging() { log_to_histograms_ = true; } void ActivateLogging() { log_to_histograms_ = true; }
absl::optional<int> new_compression() const {
return new_compression_to_set_;
}
// Only used for testing. // Only used for testing.
void set_agc(Agc* agc) { agc_.reset(agc); }
int min_mic_level() const { return min_mic_level_; } int min_mic_level() const { return min_mic_level_; }
int startup_min_level() const { return startup_min_level_; } int startup_min_level() const { return startup_min_level_; }
@ -240,29 +230,27 @@ class RecommendedInputVolumeEstimator {
// by the user, in which case no action is taken. // by the user, in which case no action is taken.
void SetLevel(int new_level); void SetLevel(int new_level);
// Set the maximum input volume the AGC is allowed to apply. Also updates the // Set the maximum input volume the input volume controller is allowed to
// maximum compression gain to compensate. The volume must be at least // apply. The volume must be at least `kClippedLevelMin`.
// `kClippedLevelMin`.
void SetMaxLevel(int level); void SetMaxLevel(int level);
int CheckVolumeAndReset(); int CheckVolumeAndReset();
void UpdateGain(int rms_error_db); void UpdateGain(int rms_error_db);
void UpdateCompressor();
const int min_mic_level_; const int min_mic_level_;
// TODO(webrtc:7494): Replace with `digital_adaptive_follows_`.
const bool disable_digital_adaptive_; const bool disable_digital_adaptive_;
std::unique_ptr<Agc> agc_; const int max_digital_gain_db_;
const int min_digital_gain_db_;
int level_ = 0; int level_ = 0;
int max_level_; int max_level_;
int max_compression_gain_;
int target_compression_;
int compression_;
float compression_accumulator_;
bool capture_output_used_ = true; bool capture_output_used_ = true;
bool check_volume_on_next_process_ = true; bool check_volume_on_next_process_ = true;
bool startup_ = true; bool startup_ = true;
int startup_min_level_; int startup_min_level_;
int calls_since_last_gain_log_ = 0;
// TODO(bugs.webrtc.org/7494): Create a separate member for the applied // TODO(bugs.webrtc.org/7494): Create a separate member for the applied
// input volume. // input volume.
@ -272,13 +260,12 @@ class RecommendedInputVolumeEstimator {
// recommended input volume. // recommended input volume.
int recommended_input_volume_ = 0; int recommended_input_volume_ = 0;
absl::optional<int> new_compression_to_set_;
bool log_to_histograms_ = false; bool log_to_histograms_ = false;
const int clipped_level_min_; const int clipped_level_min_;
// Frames since the last `UpdateGain()` call. // Frames since the last `UpdateGain()` call.
int frames_since_update_gain_ = 0; int frames_since_update_gain_ = 0;
// Set to true for the first frame after startup and reset, otherwise false.
bool is_first_frame_ = true; bool is_first_frame_ = true;
}; };

View File

@ -97,10 +97,16 @@ bool Agc2Config::AdaptiveDigital::operator==(
max_output_noise_level_dbfs == rhs.max_output_noise_level_dbfs; max_output_noise_level_dbfs == rhs.max_output_noise_level_dbfs;
} }
bool Agc2Config::InputVolumeController::operator==(
const Agc2Config::InputVolumeController& rhs) const {
return enabled == rhs.enabled;
}
bool Agc2Config::operator==(const Agc2Config& rhs) const { bool Agc2Config::operator==(const Agc2Config& rhs) const {
return enabled == rhs.enabled && return enabled == rhs.enabled &&
fixed_digital.gain_db == rhs.fixed_digital.gain_db && fixed_digital.gain_db == rhs.fixed_digital.gain_db &&
adaptive_digital == rhs.adaptive_digital; adaptive_digital == rhs.adaptive_digital &&
input_volume_controller == rhs.input_volume_controller;
} }
bool AudioProcessing::Config::CaptureLevelAdjustment::operator==( bool AudioProcessing::Config::CaptureLevelAdjustment::operator==(
@ -204,7 +210,8 @@ std::string AudioProcessing::Config::ToString() const {
<< gain_controller2.adaptive_digital.max_gain_change_db_per_second << gain_controller2.adaptive_digital.max_gain_change_db_per_second
<< ", max_output_noise_level_dbfs: " << ", max_output_noise_level_dbfs: "
<< gain_controller2.adaptive_digital.max_output_noise_level_dbfs << gain_controller2.adaptive_digital.max_output_noise_level_dbfs
<< "}}"; << " }, input_volume_control : { enabled "
<< gain_controller2.input_volume_controller.enabled << "}}";
return builder.str(); return builder.str();
} }

View File

@ -357,6 +357,15 @@ class RTC_EXPORT AudioProcessing : public rtc::RefCountInterface {
float max_gain_change_db_per_second = 3.0f; float max_gain_change_db_per_second = 3.0f;
float max_output_noise_level_dbfs = -50.0f; float max_output_noise_level_dbfs = -50.0f;
} adaptive_digital; } adaptive_digital;
// Enables input volume control in AGC2.
struct InputVolumeController {
bool operator==(const InputVolumeController& rhs) const;
bool operator!=(const InputVolumeController& rhs) const {
return !(*this == rhs);
}
bool enabled = false;
} input_volume_controller;
} gain_controller2; } gain_controller2;
std::string ToString() const; std::string ToString() const;