OLD | NEW |
(Empty) | |
| 1 /* |
| 2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. |
| 3 * |
| 4 * Use of this source code is governed by a BSD-style license |
| 5 * that can be found in the LICENSE file in the root of the source |
| 6 * tree. An additional intellectual property rights grant can be found |
| 7 * in the file PATENTS. All contributing project authors may |
| 8 * be found in the AUTHORS file in the root of the source tree. |
| 9 */ |
| 10 |
| 11 #include "webrtc/modules/audio_processing/level_controller/gain_selector.h" |
| 12 |
| 13 #include <math.h> |
| 14 #include <algorithm> |
| 15 |
| 16 #include "webrtc/base/checks.h" |
| 17 #include "webrtc/modules/audio_processing/include/audio_processing.h" |
| 18 #include "webrtc/modules/audio_processing/level_controller/lc_constants.h" |
| 19 |
| 20 namespace webrtc { |
| 21 |
| 22 GainSelector::GainSelector() { |
| 23 Initialize(AudioProcessing::kSampleRate48kHz); |
| 24 } |
| 25 |
| 26 void GainSelector::Initialize(int sample_rate_hz) { |
| 27 gain_ = 1.f; |
| 28 frame_length_ = rtc::CheckedDivExact(sample_rate_hz, 100); |
| 29 highly_nonstationary_signal_hold_counter_ = 0; |
| 30 } |
| 31 |
| 32 // Chooses the gain to apply by the level controller such that |
| 33 // 1) The level of the stationary noise does not exceed |
| 34 // a predefined threshold. |
| 35 // 2) The gain does not exceed the gain that has been found |
| 36 // to saturate the signal. |
| 37 // 3) The peak level achieves the target peak level. |
| 38 // 4) The gain is not below 1. |
| 39 // 4) The gain is 1 if the signal has been classified as stationary |
| 40 // for a long time. |
| 41 // 5) The gain is not above the maximum gain. |
| 42 float GainSelector::GetNewGain(float peak_level, |
| 43 float noise_energy, |
| 44 float saturating_gain, |
| 45 SignalClassifier::SignalType signal_type) { |
| 46 RTC_DCHECK_LT(0.f, peak_level); |
| 47 |
| 48 if (signal_type == SignalClassifier::SignalType::kHighlyNonStationary) { |
| 49 highly_nonstationary_signal_hold_counter_ = 10000; |
| 50 } else { |
| 51 highly_nonstationary_signal_hold_counter_ = |
| 52 std::max(0, highly_nonstationary_signal_hold_counter_ - 1); |
| 53 } |
| 54 |
| 55 float desired_gain; |
| 56 if (highly_nonstationary_signal_hold_counter_ > 0) { |
| 57 // Compute a desired gain that ensures that the peak level is amplified to |
| 58 // the target level. |
| 59 desired_gain = kTargetLcPeakLevel / peak_level; |
| 60 |
| 61 // Limit the desired gain so that it does not amplify the noise too much. |
| 62 float max_noise_energy = kMaxLcNoisePower * frame_length_; |
| 63 if (noise_energy * desired_gain * desired_gain > max_noise_energy) { |
| 64 RTC_DCHECK_LE(0.f, noise_energy); |
| 65 desired_gain = sqrtf(max_noise_energy / noise_energy); |
| 66 } |
| 67 } else { |
| 68 // If the signal has been stationary for a long while, apply a gain of 1 to |
| 69 // avoid amplifying pure noise. |
| 70 desired_gain = 1.0f; |
| 71 } |
| 72 |
| 73 // Smootly update the gain towards the desired gain. |
| 74 gain_ += 0.2f * (desired_gain - gain_); |
| 75 |
| 76 // Limit the gain to not exceed the maximum and the saturating gains, and to |
| 77 // ensure that the lowest possible gain is 1. |
| 78 gain_ = std::min(gain_, saturating_gain); |
| 79 gain_ = std::min(gain_, kMaxLcGain); |
| 80 gain_ = std::max(gain_, 1.f); |
| 81 |
| 82 return gain_; |
| 83 } |
| 84 |
| 85 } // namespace webrtc |
OLD | NEW |