mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-13 05:40:42 +01:00

This CL adds proper multi-channel support to the analog AGC. Beyond that, it prepares adding multi-channel support to the digital AGC by removing the tight dependency between the analog and digital AGC codes. Bug: webrtc:10859 Change-Id: I4414ccbc3db5dbb5ae069fdf426cbd038375ca7b Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/159480 Reviewed-by: Sam Zackrisson <saza@webrtc.org> Commit-Queue: Per Åhgren <peah@webrtc.org> Cr-Commit-Position: refs/heads/master@{#29878}
442 lines
13 KiB
C++
442 lines
13 KiB
C++
/*
|
|
* Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license
|
|
* that can be found in the LICENSE file in the root of the source
|
|
* tree. An additional intellectual property rights grant can be found
|
|
* in the file PATENTS. All contributing project authors may
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
*/
|
|
|
|
#include "modules/audio_processing/gain_control_impl.h"
|
|
|
|
#include <cstdint>
|
|
|
|
#include "absl/types/optional.h"
|
|
#include "modules/audio_processing/agc/legacy/gain_control.h"
|
|
#include "modules/audio_processing/audio_buffer.h"
|
|
#include "modules/audio_processing/include/audio_processing.h"
|
|
#include "modules/audio_processing/logging/apm_data_dumper.h"
|
|
#include "rtc_base/checks.h"
|
|
#include "rtc_base/constructor_magic.h"
|
|
#include "rtc_base/logging.h"
|
|
|
|
namespace webrtc {
|
|
|
|
typedef void Handle;
|
|
|
|
namespace {
|
|
int16_t MapSetting(GainControl::Mode mode) {
|
|
switch (mode) {
|
|
case GainControl::kAdaptiveAnalog:
|
|
return kAgcModeAdaptiveAnalog;
|
|
case GainControl::kAdaptiveDigital:
|
|
return kAgcModeAdaptiveDigital;
|
|
case GainControl::kFixedDigital:
|
|
return kAgcModeFixedDigital;
|
|
}
|
|
RTC_NOTREACHED();
|
|
return -1;
|
|
}
|
|
|
|
} // namespace
|
|
|
|
class GainControlImpl::GainController {
|
|
public:
|
|
explicit GainController() {
|
|
state_ = WebRtcAgc_Create();
|
|
RTC_CHECK(state_);
|
|
}
|
|
|
|
~GainController() {
|
|
RTC_DCHECK(state_);
|
|
WebRtcAgc_Free(state_);
|
|
}
|
|
|
|
Handle* state() {
|
|
RTC_DCHECK(state_);
|
|
return state_;
|
|
}
|
|
|
|
void Initialize(int minimum_capture_level,
|
|
int maximum_capture_level,
|
|
Mode mode,
|
|
int sample_rate_hz,
|
|
int capture_level) {
|
|
RTC_DCHECK(state_);
|
|
int error =
|
|
WebRtcAgc_Init(state_, minimum_capture_level, maximum_capture_level,
|
|
MapSetting(mode), sample_rate_hz);
|
|
RTC_DCHECK_EQ(0, error);
|
|
|
|
set_capture_level(capture_level);
|
|
}
|
|
|
|
void set_capture_level(int capture_level) { capture_level_ = capture_level; }
|
|
|
|
int get_capture_level() {
|
|
RTC_DCHECK(capture_level_);
|
|
return *capture_level_;
|
|
}
|
|
|
|
private:
|
|
Handle* state_;
|
|
// TODO(peah): Remove the optional once the initialization is moved into the
|
|
// ctor.
|
|
absl::optional<int> capture_level_;
|
|
|
|
RTC_DISALLOW_COPY_AND_ASSIGN(GainController);
|
|
};
|
|
|
|
int GainControlImpl::instance_counter_ = 0;
|
|
|
|
GainControlImpl::GainControlImpl()
|
|
: data_dumper_(new ApmDataDumper(instance_counter_)),
|
|
mode_(kAdaptiveAnalog),
|
|
minimum_capture_level_(0),
|
|
maximum_capture_level_(255),
|
|
limiter_enabled_(true),
|
|
target_level_dbfs_(3),
|
|
compression_gain_db_(9),
|
|
analog_capture_level_(0),
|
|
was_analog_level_set_(false),
|
|
stream_is_saturated_(false) {}
|
|
|
|
GainControlImpl::~GainControlImpl() {}
|
|
|
|
void GainControlImpl::ProcessRenderAudio(
|
|
rtc::ArrayView<const int16_t> packed_render_audio) {
|
|
if (!enabled_) {
|
|
return;
|
|
}
|
|
|
|
for (auto& gain_controller : gain_controllers_) {
|
|
WebRtcAgc_AddFarend(gain_controller->state(), packed_render_audio.data(),
|
|
packed_render_audio.size());
|
|
}
|
|
}
|
|
|
|
void GainControlImpl::PackRenderAudioBuffer(
|
|
AudioBuffer* audio,
|
|
std::vector<int16_t>* packed_buffer) {
|
|
RTC_DCHECK_GE(AudioBuffer::kMaxSplitFrameLength,
|
|
audio->num_frames_per_band());
|
|
std::array<int16_t, AudioBuffer::kMaxSplitFrameLength> mixed_low_pass_data;
|
|
rtc::ArrayView<const int16_t> mixed_low_pass(mixed_low_pass_data.data(),
|
|
audio->num_frames_per_band());
|
|
if (audio->num_channels() == 1) {
|
|
FloatS16ToS16(audio->split_bands_const(0)[kBand0To8kHz],
|
|
audio->num_frames_per_band(), mixed_low_pass_data.data());
|
|
} else {
|
|
const int num_channels = static_cast<int>(audio->num_channels());
|
|
for (size_t i = 0; i < audio->num_frames_per_band(); ++i) {
|
|
int32_t value =
|
|
FloatS16ToS16(audio->split_channels_const(kBand0To8kHz)[0][i]);
|
|
for (int j = 1; j < num_channels; ++j) {
|
|
value += FloatS16ToS16(audio->split_channels_const(kBand0To8kHz)[j][i]);
|
|
}
|
|
mixed_low_pass_data[i] = value / num_channels;
|
|
}
|
|
}
|
|
|
|
packed_buffer->clear();
|
|
packed_buffer->insert(packed_buffer->end(), mixed_low_pass.data(),
|
|
(mixed_low_pass.data() + audio->num_frames_per_band()));
|
|
}
|
|
|
|
int GainControlImpl::AnalyzeCaptureAudio(AudioBuffer* audio) {
|
|
if (!enabled_) {
|
|
return AudioProcessing::kNoError;
|
|
}
|
|
|
|
RTC_DCHECK(num_proc_channels_);
|
|
RTC_DCHECK_GE(AudioBuffer::kMaxSplitFrameLength,
|
|
audio->num_frames_per_band());
|
|
RTC_DCHECK_EQ(audio->num_channels(), *num_proc_channels_);
|
|
RTC_DCHECK_LE(*num_proc_channels_, gain_controllers_.size());
|
|
|
|
int16_t split_band_data[AudioBuffer::kMaxNumBands]
|
|
[AudioBuffer::kMaxSplitFrameLength];
|
|
int16_t* split_bands[AudioBuffer::kMaxNumBands] = {
|
|
split_band_data[0], split_band_data[1], split_band_data[2]};
|
|
|
|
if (mode_ == kAdaptiveAnalog) {
|
|
int capture_channel = 0;
|
|
for (auto& gain_controller : gain_controllers_) {
|
|
gain_controller->set_capture_level(analog_capture_level_);
|
|
|
|
audio->ExportSplitChannelData(capture_channel, split_bands);
|
|
|
|
int err =
|
|
WebRtcAgc_AddMic(gain_controller->state(), split_bands,
|
|
audio->num_bands(), audio->num_frames_per_band());
|
|
|
|
audio->ImportSplitChannelData(capture_channel, split_bands);
|
|
|
|
if (err != AudioProcessing::kNoError) {
|
|
return AudioProcessing::kUnspecifiedError;
|
|
}
|
|
++capture_channel;
|
|
}
|
|
} else if (mode_ == kAdaptiveDigital) {
|
|
int capture_channel = 0;
|
|
for (auto& gain_controller : gain_controllers_) {
|
|
int32_t capture_level_out = 0;
|
|
|
|
audio->ExportSplitChannelData(capture_channel, split_bands);
|
|
|
|
int err =
|
|
WebRtcAgc_VirtualMic(gain_controller->state(), split_bands,
|
|
audio->num_bands(), audio->num_frames_per_band(),
|
|
analog_capture_level_, &capture_level_out);
|
|
|
|
audio->ImportSplitChannelData(capture_channel, split_bands);
|
|
|
|
gain_controller->set_capture_level(capture_level_out);
|
|
|
|
if (err != AudioProcessing::kNoError) {
|
|
return AudioProcessing::kUnspecifiedError;
|
|
}
|
|
++capture_channel;
|
|
}
|
|
}
|
|
|
|
return AudioProcessing::kNoError;
|
|
}
|
|
|
|
int GainControlImpl::ProcessCaptureAudio(AudioBuffer* audio,
|
|
bool stream_has_echo) {
|
|
if (!enabled_) {
|
|
return AudioProcessing::kNoError;
|
|
}
|
|
|
|
if (mode_ == kAdaptiveAnalog && !was_analog_level_set_) {
|
|
return AudioProcessing::kStreamParameterNotSetError;
|
|
}
|
|
|
|
RTC_DCHECK(num_proc_channels_);
|
|
RTC_DCHECK_GE(AudioBuffer::kMaxSplitFrameLength,
|
|
audio->num_frames_per_band());
|
|
RTC_DCHECK_EQ(audio->num_channels(), *num_proc_channels_);
|
|
|
|
stream_is_saturated_ = false;
|
|
int capture_channel = 0;
|
|
for (auto& gain_controller : gain_controllers_) {
|
|
int32_t capture_level_out = 0;
|
|
uint8_t saturation_warning = 0;
|
|
|
|
int16_t split_band_data[AudioBuffer::kMaxNumBands]
|
|
[AudioBuffer::kMaxSplitFrameLength];
|
|
int16_t* split_bands[AudioBuffer::kMaxNumBands] = {
|
|
split_band_data[0], split_band_data[1], split_band_data[2]};
|
|
audio->ExportSplitChannelData(capture_channel, split_bands);
|
|
|
|
// The call to stream_has_echo() is ok from a deadlock perspective
|
|
// as the capture lock is allready held.
|
|
int err = WebRtcAgc_Process(
|
|
gain_controller->state(), split_bands, audio->num_bands(),
|
|
audio->num_frames_per_band(), split_bands,
|
|
gain_controller->get_capture_level(), &capture_level_out,
|
|
stream_has_echo, &saturation_warning);
|
|
|
|
audio->ImportSplitChannelData(capture_channel, split_bands);
|
|
|
|
if (err != AudioProcessing::kNoError) {
|
|
return AudioProcessing::kUnspecifiedError;
|
|
}
|
|
|
|
gain_controller->set_capture_level(capture_level_out);
|
|
if (saturation_warning == 1) {
|
|
stream_is_saturated_ = true;
|
|
}
|
|
|
|
++capture_channel;
|
|
}
|
|
|
|
RTC_DCHECK_LT(0ul, *num_proc_channels_);
|
|
if (mode_ == kAdaptiveAnalog) {
|
|
// Take the analog level to be the average across the handles.
|
|
analog_capture_level_ = 0;
|
|
for (auto& gain_controller : gain_controllers_) {
|
|
analog_capture_level_ += gain_controller->get_capture_level();
|
|
}
|
|
|
|
analog_capture_level_ /= (*num_proc_channels_);
|
|
}
|
|
|
|
was_analog_level_set_ = false;
|
|
return AudioProcessing::kNoError;
|
|
}
|
|
|
|
int GainControlImpl::compression_gain_db() const {
|
|
return compression_gain_db_;
|
|
}
|
|
|
|
// TODO(ajm): ensure this is called under kAdaptiveAnalog.
|
|
int GainControlImpl::set_stream_analog_level(int level) {
|
|
data_dumper_->DumpRaw("gain_control_set_stream_analog_level", 1, &level);
|
|
|
|
was_analog_level_set_ = true;
|
|
if (level < minimum_capture_level_ || level > maximum_capture_level_) {
|
|
return AudioProcessing::kBadParameterError;
|
|
}
|
|
analog_capture_level_ = level;
|
|
|
|
return AudioProcessing::kNoError;
|
|
}
|
|
|
|
int GainControlImpl::stream_analog_level() const {
|
|
data_dumper_->DumpRaw("gain_control_stream_analog_level", 1,
|
|
&analog_capture_level_);
|
|
// TODO(ajm): enable this assertion?
|
|
// RTC_DCHECK_EQ(kAdaptiveAnalog, mode_);
|
|
|
|
return analog_capture_level_;
|
|
}
|
|
|
|
int GainControlImpl::Enable(bool enable) {
|
|
if (enable && !enabled_) {
|
|
enabled_ = enable; // Must be set before Initialize() is called.
|
|
|
|
RTC_DCHECK(num_proc_channels_);
|
|
RTC_DCHECK(sample_rate_hz_);
|
|
Initialize(*num_proc_channels_, *sample_rate_hz_);
|
|
} else {
|
|
enabled_ = enable;
|
|
}
|
|
return AudioProcessing::kNoError;
|
|
}
|
|
|
|
bool GainControlImpl::is_enabled() const {
|
|
return enabled_;
|
|
}
|
|
|
|
int GainControlImpl::set_mode(Mode mode) {
|
|
if (MapSetting(mode) == -1) {
|
|
return AudioProcessing::kBadParameterError;
|
|
}
|
|
|
|
mode_ = mode;
|
|
RTC_DCHECK(num_proc_channels_);
|
|
RTC_DCHECK(sample_rate_hz_);
|
|
Initialize(*num_proc_channels_, *sample_rate_hz_);
|
|
return AudioProcessing::kNoError;
|
|
}
|
|
|
|
GainControl::Mode GainControlImpl::mode() const {
|
|
return mode_;
|
|
}
|
|
|
|
int GainControlImpl::set_analog_level_limits(int minimum, int maximum) {
|
|
if (minimum < 0) {
|
|
return AudioProcessing::kBadParameterError;
|
|
}
|
|
|
|
if (maximum > 65535) {
|
|
return AudioProcessing::kBadParameterError;
|
|
}
|
|
|
|
if (maximum < minimum) {
|
|
return AudioProcessing::kBadParameterError;
|
|
}
|
|
|
|
size_t num_proc_channels_local = 0u;
|
|
int sample_rate_hz_local = 0;
|
|
{
|
|
minimum_capture_level_ = minimum;
|
|
maximum_capture_level_ = maximum;
|
|
|
|
RTC_DCHECK(num_proc_channels_);
|
|
RTC_DCHECK(sample_rate_hz_);
|
|
num_proc_channels_local = *num_proc_channels_;
|
|
sample_rate_hz_local = *sample_rate_hz_;
|
|
}
|
|
Initialize(num_proc_channels_local, sample_rate_hz_local);
|
|
return AudioProcessing::kNoError;
|
|
}
|
|
|
|
int GainControlImpl::analog_level_minimum() const {
|
|
return minimum_capture_level_;
|
|
}
|
|
|
|
int GainControlImpl::analog_level_maximum() const {
|
|
return maximum_capture_level_;
|
|
}
|
|
|
|
bool GainControlImpl::stream_is_saturated() const {
|
|
return stream_is_saturated_;
|
|
}
|
|
|
|
int GainControlImpl::set_target_level_dbfs(int level) {
|
|
if (level > 31 || level < 0) {
|
|
return AudioProcessing::kBadParameterError;
|
|
}
|
|
target_level_dbfs_ = level;
|
|
return Configure();
|
|
}
|
|
|
|
int GainControlImpl::target_level_dbfs() const {
|
|
return target_level_dbfs_;
|
|
}
|
|
|
|
int GainControlImpl::set_compression_gain_db(int gain) {
|
|
if (gain < 0 || gain > 90) {
|
|
RTC_LOG(LS_ERROR) << "set_compression_gain_db(" << gain << ") failed.";
|
|
return AudioProcessing::kBadParameterError;
|
|
}
|
|
compression_gain_db_ = gain;
|
|
return Configure();
|
|
}
|
|
|
|
int GainControlImpl::enable_limiter(bool enable) {
|
|
limiter_enabled_ = enable;
|
|
return Configure();
|
|
}
|
|
|
|
bool GainControlImpl::is_limiter_enabled() const {
|
|
return limiter_enabled_;
|
|
}
|
|
|
|
void GainControlImpl::Initialize(size_t num_proc_channels, int sample_rate_hz) {
|
|
data_dumper_->InitiateNewSetOfRecordings();
|
|
|
|
num_proc_channels_ = num_proc_channels;
|
|
sample_rate_hz_ = sample_rate_hz;
|
|
|
|
if (!enabled_) {
|
|
return;
|
|
}
|
|
|
|
gain_controllers_.resize(*num_proc_channels_);
|
|
for (auto& gain_controller : gain_controllers_) {
|
|
if (!gain_controller) {
|
|
gain_controller.reset(new GainController());
|
|
}
|
|
gain_controller->Initialize(minimum_capture_level_, maximum_capture_level_,
|
|
mode_, *sample_rate_hz_, analog_capture_level_);
|
|
}
|
|
|
|
Configure();
|
|
}
|
|
|
|
int GainControlImpl::Configure() {
|
|
WebRtcAgcConfig config;
|
|
// TODO(ajm): Flip the sign here (since AGC expects a positive value) if we
|
|
// change the interface.
|
|
// RTC_DCHECK_LE(target_level_dbfs_, 0);
|
|
// config.targetLevelDbfs = static_cast<int16_t>(-target_level_dbfs_);
|
|
config.targetLevelDbfs = static_cast<int16_t>(target_level_dbfs_);
|
|
config.compressionGaindB = static_cast<int16_t>(compression_gain_db_);
|
|
config.limiterEnable = limiter_enabled_;
|
|
|
|
int error = AudioProcessing::kNoError;
|
|
for (auto& gain_controller : gain_controllers_) {
|
|
const int handle_error =
|
|
WebRtcAgc_set_config(gain_controller->state(), config);
|
|
if (handle_error != AudioProcessing::kNoError) {
|
|
error = handle_error;
|
|
}
|
|
}
|
|
return error;
|
|
}
|
|
} // namespace webrtc
|