OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2017 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2017 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 |
11 #ifndef WEBRTC_MODULES_AUDIO_PROCESSING_AEC3_SUPPRESSION_GAIN_H_ | 11 #ifndef WEBRTC_MODULES_AUDIO_PROCESSING_AEC3_SUPPRESSION_GAIN_H_ |
12 #define WEBRTC_MODULES_AUDIO_PROCESSING_AEC3_SUPPRESSION_GAIN_H_ | 12 #define WEBRTC_MODULES_AUDIO_PROCESSING_AEC3_SUPPRESSION_GAIN_H_ |
13 | 13 |
14 #include <array> | 14 #include <array> |
15 #include <vector> | 15 #include <vector> |
16 | 16 |
17 #include "webrtc/modules/audio_processing/aec3/aec3_common.h" | 17 #include "webrtc/modules/audio_processing/aec3/aec3_common.h" |
18 #include "webrtc/modules/audio_processing/aec3/render_signal_analyzer.h" | 18 #include "webrtc/modules/audio_processing/aec3/render_signal_analyzer.h" |
| 19 #include "webrtc/modules/audio_processing/include/audio_processing.h" |
19 #include "webrtc/rtc_base/constructormagic.h" | 20 #include "webrtc/rtc_base/constructormagic.h" |
20 | 21 |
21 namespace webrtc { | 22 namespace webrtc { |
22 | 23 |
23 class SuppressionGain { | 24 class SuppressionGain { |
24 public: | 25 public: |
25 explicit SuppressionGain(Aec3Optimization optimization); | 26 SuppressionGain(const AudioProcessing::Config::EchoCanceller3& config, |
| 27 Aec3Optimization optimization); |
26 void GetGain(const std::array<float, kFftLengthBy2Plus1>& nearend, | 28 void GetGain(const std::array<float, kFftLengthBy2Plus1>& nearend, |
27 const std::array<float, kFftLengthBy2Plus1>& echo, | 29 const std::array<float, kFftLengthBy2Plus1>& echo, |
28 const std::array<float, kFftLengthBy2Plus1>& comfort_noise, | 30 const std::array<float, kFftLengthBy2Plus1>& comfort_noise, |
29 const RenderSignalAnalyzer& render_signal_analyzer, | 31 const RenderSignalAnalyzer& render_signal_analyzer, |
30 bool saturated_echo, | 32 bool saturated_echo, |
31 const std::vector<std::vector<float>>& render, | 33 const std::vector<std::vector<float>>& render, |
32 bool force_zero_gain, | 34 bool force_zero_gain, |
33 float* high_bands_gain, | 35 float* high_bands_gain, |
34 std::array<float, kFftLengthBy2Plus1>* low_band_gain); | 36 std::array<float, kFftLengthBy2Plus1>* low_band_gain); |
35 | 37 |
36 private: | 38 private: |
| 39 void UpdateMaxGainIncrease( |
| 40 size_t no_saturation_counter, |
| 41 bool low_noise_render, |
| 42 const std::array<float, kFftLengthBy2Plus1>& last_echo, |
| 43 const std::array<float, kFftLengthBy2Plus1>& echo, |
| 44 const std::array<float, kFftLengthBy2Plus1>& last_gain, |
| 45 const std::array<float, kFftLengthBy2Plus1>& new_gain, |
| 46 std::array<float, kFftLengthBy2Plus1>* gain_increase) const; |
| 47 |
| 48 void GainToNoAudibleEcho( |
| 49 bool low_noise_render, |
| 50 bool saturated_echo, |
| 51 const std::array<float, kFftLengthBy2Plus1>& nearend, |
| 52 const std::array<float, kFftLengthBy2Plus1>& echo, |
| 53 const std::array<float, kFftLengthBy2Plus1>& masker, |
| 54 const std::array<float, kFftLengthBy2Plus1>& min_gain, |
| 55 const std::array<float, kFftLengthBy2Plus1>& max_gain, |
| 56 const std::array<float, kFftLengthBy2Plus1>& one_by_echo, |
| 57 std::array<float, kFftLengthBy2Plus1>* gain) const; |
| 58 |
| 59 void MaskingPower(const std::array<float, kFftLengthBy2Plus1>& nearend, |
| 60 const std::array<float, kFftLengthBy2Plus1>& comfort_noise, |
| 61 const std::array<float, kFftLengthBy2Plus1>& last_masker, |
| 62 const std::array<float, kFftLengthBy2Plus1>& gain, |
| 63 std::array<float, kFftLengthBy2Plus1>* masker) const; |
| 64 |
37 void LowerBandGain(bool stationary_with_low_power, | 65 void LowerBandGain(bool stationary_with_low_power, |
38 const rtc::Optional<int>& narrow_peak_band, | 66 const rtc::Optional<int>& narrow_peak_band, |
39 bool saturated_echo, | 67 bool saturated_echo, |
40 const std::array<float, kFftLengthBy2Plus1>& nearend, | 68 const std::array<float, kFftLengthBy2Plus1>& nearend, |
41 const std::array<float, kFftLengthBy2Plus1>& echo, | 69 const std::array<float, kFftLengthBy2Plus1>& echo, |
42 const std::array<float, kFftLengthBy2Plus1>& comfort_noise, | 70 const std::array<float, kFftLengthBy2Plus1>& comfort_noise, |
43 std::array<float, kFftLengthBy2Plus1>* gain); | 71 std::array<float, kFftLengthBy2Plus1>* gain); |
44 | 72 |
45 class LowNoiseRenderDetector { | 73 class LowNoiseRenderDetector { |
46 public: | 74 public: |
47 bool Detect(const std::vector<std::vector<float>>& render); | 75 bool Detect(const std::vector<std::vector<float>>& render); |
48 | 76 |
49 private: | 77 private: |
50 float average_power_ = 32768.f * 32768.f; | 78 float average_power_ = 32768.f * 32768.f; |
51 }; | 79 }; |
52 | 80 |
53 const Aec3Optimization optimization_; | 81 const Aec3Optimization optimization_; |
54 std::array<float, kFftLengthBy2Plus1> last_gain_; | 82 std::array<float, kFftLengthBy2Plus1> last_gain_; |
55 std::array<float, kFftLengthBy2Plus1> last_masker_; | 83 std::array<float, kFftLengthBy2Plus1> last_masker_; |
56 std::array<float, kFftLengthBy2Plus1> gain_increase_; | 84 std::array<float, kFftLengthBy2Plus1> gain_increase_; |
57 std::array<float, kFftLengthBy2Plus1> last_echo_; | 85 std::array<float, kFftLengthBy2Plus1> last_echo_; |
58 | 86 |
59 LowNoiseRenderDetector low_render_detector_; | 87 LowNoiseRenderDetector low_render_detector_; |
60 size_t no_saturation_counter_ = 0; | 88 size_t no_saturation_counter_ = 0; |
61 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(SuppressionGain); | 89 const AudioProcessing::Config::EchoCanceller3 config_; |
| 90 RTC_DISALLOW_COPY_AND_ASSIGN(SuppressionGain); |
62 }; | 91 }; |
63 | 92 |
64 } // namespace webrtc | 93 } // namespace webrtc |
65 | 94 |
66 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_AEC3_SUPPRESSION_GAIN_H_ | 95 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_AEC3_SUPPRESSION_GAIN_H_ |
OLD | NEW |