| 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/base/constructormagic.h" | 17 #include "webrtc/base/constructormagic.h" |
| 18 #include "webrtc/modules/audio_processing/aec3/aec3_common.h" | 18 #include "webrtc/modules/audio_processing/aec3/aec3_common.h" |
| 19 | 19 |
| 20 namespace webrtc { | 20 namespace webrtc { |
| 21 | 21 |
| 22 class SuppressionGain { | 22 class SuppressionGain { |
| 23 public: | 23 public: |
| 24 explicit SuppressionGain(Aec3Optimization optimization); | 24 explicit SuppressionGain(Aec3Optimization optimization); |
| 25 void GetGain(const std::array<float, kFftLengthBy2Plus1>& nearend_power, | 25 void GetGain(const std::array<float, kFftLengthBy2Plus1>& nearend, |
| 26 const std::array<float, kFftLengthBy2Plus1>& residual_echo_power, | 26 const std::array<float, kFftLengthBy2Plus1>& echo, |
| 27 const std::array<float, kFftLengthBy2Plus1>& comfort_noise_power, | 27 const std::array<float, kFftLengthBy2Plus1>& comfort_noise, |
| 28 bool saturated_echo, | 28 bool saturated_echo, |
| 29 const std::vector<std::vector<float>>& render, | 29 const std::vector<std::vector<float>>& render, |
| 30 size_t num_capture_bands, | |
| 31 bool force_zero_gain, | 30 bool force_zero_gain, |
| 32 float* high_bands_gain, | 31 float* high_bands_gain, |
| 33 std::array<float, kFftLengthBy2Plus1>* low_band_gain); | 32 std::array<float, kFftLengthBy2Plus1>* low_band_gain); |
| 34 | 33 |
| 35 private: | 34 private: |
| 35 void LowerBandGain(bool stationary_with_low_power, |
| 36 bool saturated_echo, |
| 37 const std::array<float, kFftLengthBy2Plus1>& nearend, |
| 38 const std::array<float, kFftLengthBy2Plus1>& echo, |
| 39 const std::array<float, kFftLengthBy2Plus1>& comfort_noise, |
| 40 std::array<float, kFftLengthBy2Plus1>* gain); |
| 41 |
| 42 class LowNoiseRenderDetector { |
| 43 public: |
| 44 bool Detect(const std::vector<std::vector<float>>& render); |
| 45 |
| 46 private: |
| 47 float average_power_ = 32768.f * 32768.f; |
| 48 }; |
| 49 |
| 36 const Aec3Optimization optimization_; | 50 const Aec3Optimization optimization_; |
| 37 std::array<float, kFftLengthBy2 - 1> previous_gain_squared_; | 51 std::array<float, kFftLengthBy2Plus1> last_gain_; |
| 38 std::array<float, kFftLengthBy2 - 1> previous_masker_; | 52 std::array<float, kFftLengthBy2Plus1> last_masker_; |
| 53 std::array<float, kFftLengthBy2Plus1> gain_increase_; |
| 54 std::array<float, kFftLengthBy2Plus1> last_echo_; |
| 55 |
| 56 LowNoiseRenderDetector low_render_detector_; |
| 57 size_t no_saturation_counter_ = 0; |
| 39 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(SuppressionGain); | 58 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(SuppressionGain); |
| 40 }; | 59 }; |
| 41 | 60 |
| 42 } // namespace webrtc | 61 } // namespace webrtc |
| 43 | 62 |
| 44 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_AEC3_SUPPRESSION_GAIN_H_ | 63 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_AEC3_SUPPRESSION_GAIN_H_ |
| OLD | NEW |