2017-05-22 06:57:06 -07:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2017 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.
|
|
|
|
|
*/
|
|
|
|
|
|
2018-02-16 11:54:07 +01:00
|
|
|
#include "modules/audio_processing/gain_controller2.h"
|
2017-05-22 06:57:06 -07:00
|
|
|
|
2017-09-15 06:47:31 +02:00
|
|
|
#include "modules/audio_processing/audio_buffer.h"
|
2018-02-16 11:54:07 +01:00
|
|
|
#include "modules/audio_processing/include/audio_frame_view.h"
|
2017-09-15 06:47:31 +02:00
|
|
|
#include "modules/audio_processing/logging/apm_data_dumper.h"
|
|
|
|
|
#include "rtc_base/atomicops.h"
|
|
|
|
|
#include "rtc_base/checks.h"
|
2018-09-06 13:41:30 +02:00
|
|
|
#include "rtc_base/strings/string_builder.h"
|
2017-05-22 06:57:06 -07:00
|
|
|
|
|
|
|
|
namespace webrtc {
|
|
|
|
|
|
2017-10-13 11:05:17 +02:00
|
|
|
int GainController2::instance_count_ = 0;
|
2017-05-22 06:57:06 -07:00
|
|
|
|
2017-10-13 11:05:17 +02:00
|
|
|
GainController2::GainController2()
|
|
|
|
|
: data_dumper_(
|
|
|
|
|
new ApmDataDumper(rtc::AtomicOps::Increment(&instance_count_))),
|
2018-03-29 11:02:43 +02:00
|
|
|
fixed_gain_controller_(data_dumper_.get()),
|
|
|
|
|
adaptive_agc_(data_dumper_.get()) {}
|
2017-05-22 06:57:06 -07:00
|
|
|
|
2017-10-13 11:05:17 +02:00
|
|
|
GainController2::~GainController2() = default;
|
2017-05-22 06:57:06 -07:00
|
|
|
|
2017-10-13 11:05:17 +02:00
|
|
|
void GainController2::Initialize(int sample_rate_hz) {
|
|
|
|
|
RTC_DCHECK(sample_rate_hz == AudioProcessing::kSampleRate8kHz ||
|
|
|
|
|
sample_rate_hz == AudioProcessing::kSampleRate16kHz ||
|
|
|
|
|
sample_rate_hz == AudioProcessing::kSampleRate32kHz ||
|
|
|
|
|
sample_rate_hz == AudioProcessing::kSampleRate48kHz);
|
2018-03-29 11:02:43 +02:00
|
|
|
fixed_gain_controller_.SetSampleRate(sample_rate_hz);
|
2017-05-22 06:57:06 -07:00
|
|
|
data_dumper_->InitiateNewSetOfRecordings();
|
2018-02-16 11:54:07 +01:00
|
|
|
data_dumper_->DumpRaw("sample_rate_hz", sample_rate_hz);
|
2017-05-22 06:57:06 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void GainController2::Process(AudioBuffer* audio) {
|
2018-02-16 11:54:07 +01:00
|
|
|
AudioFrameView<float> float_frame(audio->channels_f(), audio->num_channels(),
|
|
|
|
|
audio->num_frames());
|
2018-08-24 11:28:36 +02:00
|
|
|
if (adaptive_digital_mode_) {
|
|
|
|
|
adaptive_agc_.Process(float_frame);
|
|
|
|
|
}
|
2018-03-29 11:02:43 +02:00
|
|
|
fixed_gain_controller_.Process(float_frame);
|
2017-05-22 06:57:06 -07:00
|
|
|
}
|
|
|
|
|
|
2018-08-06 16:32:12 +02:00
|
|
|
void GainController2::NotifyAnalogLevel(int level) {
|
2018-08-24 11:28:36 +02:00
|
|
|
if (analog_level_ != level && adaptive_digital_mode_) {
|
2018-08-06 16:32:12 +02:00
|
|
|
adaptive_agc_.Reset();
|
|
|
|
|
}
|
|
|
|
|
analog_level_ = level;
|
|
|
|
|
}
|
|
|
|
|
|
2017-10-13 11:05:17 +02:00
|
|
|
void GainController2::ApplyConfig(
|
|
|
|
|
const AudioProcessing::Config::GainController2& config) {
|
|
|
|
|
RTC_DCHECK(Validate(config));
|
2018-02-16 11:54:07 +01:00
|
|
|
config_ = config;
|
2018-03-29 11:02:43 +02:00
|
|
|
fixed_gain_controller_.SetGain(config_.fixed_gain_db);
|
2018-08-24 11:28:36 +02:00
|
|
|
adaptive_digital_mode_ = config_.adaptive_digital_mode;
|
2017-10-13 11:05:17 +02:00
|
|
|
}
|
|
|
|
|
|
2017-05-22 06:57:06 -07:00
|
|
|
bool GainController2::Validate(
|
|
|
|
|
const AudioProcessing::Config::GainController2& config) {
|
2017-10-13 11:05:17 +02:00
|
|
|
return config.fixed_gain_db >= 0.f;
|
2017-05-22 06:57:06 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::string GainController2::ToString(
|
|
|
|
|
const AudioProcessing::Config::GainController2& config) {
|
2018-09-06 13:41:30 +02:00
|
|
|
rtc::StringBuilder ss;
|
2017-10-13 11:05:17 +02:00
|
|
|
ss << "{enabled: " << (config.enabled ? "true" : "false") << ", "
|
2018-03-29 11:02:43 +02:00
|
|
|
<< "fixed_gain_dB: " << config.fixed_gain_db << "}";
|
2017-05-22 06:57:06 -07:00
|
|
|
return ss.str();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace webrtc
|