OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 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 | 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 | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
(...skipping 28 matching lines...) Expand all Loading... |
39 // 4) The gain is 1 if the signal has been classified as stationary | 39 // 4) The gain is 1 if the signal has been classified as stationary |
40 // for a long time. | 40 // for a long time. |
41 // 5) The gain is not above the maximum gain. | 41 // 5) The gain is not above the maximum gain. |
42 float GainSelector::GetNewGain(float peak_level, | 42 float GainSelector::GetNewGain(float peak_level, |
43 float noise_energy, | 43 float noise_energy, |
44 float saturating_gain, | 44 float saturating_gain, |
45 SignalClassifier::SignalType signal_type) { | 45 SignalClassifier::SignalType signal_type) { |
46 RTC_DCHECK_LT(0.f, peak_level); | 46 RTC_DCHECK_LT(0.f, peak_level); |
47 | 47 |
48 if (signal_type == SignalClassifier::SignalType::kHighlyNonStationary) { | 48 if (signal_type == SignalClassifier::SignalType::kHighlyNonStationary) { |
49 highly_nonstationary_signal_hold_counter_ = 10000; | 49 highly_nonstationary_signal_hold_counter_ = 100; |
50 } else { | 50 } else { |
51 highly_nonstationary_signal_hold_counter_ = | 51 highly_nonstationary_signal_hold_counter_ = |
52 std::max(0, highly_nonstationary_signal_hold_counter_ - 1); | 52 std::max(0, highly_nonstationary_signal_hold_counter_ - 1); |
53 } | 53 } |
54 | 54 |
55 float desired_gain; | 55 float desired_gain; |
56 if (highly_nonstationary_signal_hold_counter_ > 0) { | 56 if (highly_nonstationary_signal_hold_counter_ > 0) { |
57 // Compute a desired gain that ensures that the peak level is amplified to | 57 // Compute a desired gain that ensures that the peak level is amplified to |
58 // the target level. | 58 // the target level. |
59 desired_gain = kTargetLcPeakLevel / peak_level; | 59 desired_gain = kTargetLcPeakLevel / peak_level; |
(...skipping 16 matching lines...) Expand all Loading... |
76 // Limit the gain to not exceed the maximum and the saturating gains, and to | 76 // Limit the gain to not exceed the maximum and the saturating gains, and to |
77 // ensure that the lowest possible gain is 1. | 77 // ensure that the lowest possible gain is 1. |
78 gain_ = std::min(gain_, saturating_gain); | 78 gain_ = std::min(gain_, saturating_gain); |
79 gain_ = std::min(gain_, kMaxLcGain); | 79 gain_ = std::min(gain_, kMaxLcGain); |
80 gain_ = std::max(gain_, 1.f); | 80 gain_ = std::max(gain_, 1.f); |
81 | 81 |
82 return gain_; | 82 return gain_; |
83 } | 83 } |
84 | 84 |
85 } // namespace webrtc | 85 } // namespace webrtc |
OLD | NEW |