| 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 |
| 11 #ifndef WEBRTC_MODULES_AUDIO_PROCESSING_RESIDUAL_ECHO_DETECTOR_H_ | 11 #ifndef WEBRTC_MODULES_AUDIO_PROCESSING_RESIDUAL_ECHO_DETECTOR_H_ |
| 12 #define WEBRTC_MODULES_AUDIO_PROCESSING_RESIDUAL_ECHO_DETECTOR_H_ | 12 #define WEBRTC_MODULES_AUDIO_PROCESSING_RESIDUAL_ECHO_DETECTOR_H_ |
| 13 | 13 |
| 14 #include <vector> | 14 #include <vector> |
| 15 | 15 |
| 16 #include "webrtc/api/array_view.h" |
| 16 #include "webrtc/modules/audio_processing/echo_detector/circular_buffer.h" | 17 #include "webrtc/modules/audio_processing/echo_detector/circular_buffer.h" |
| 17 #include "webrtc/modules/audio_processing/echo_detector/mean_variance_estimator.
h" | 18 #include "webrtc/modules/audio_processing/echo_detector/mean_variance_estimator.
h" |
| 18 #include "webrtc/modules/audio_processing/echo_detector/moving_max.h" | 19 #include "webrtc/modules/audio_processing/echo_detector/moving_max.h" |
| 19 #include "webrtc/modules/audio_processing/echo_detector/normalized_covariance_es
timator.h" | 20 #include "webrtc/modules/audio_processing/echo_detector/normalized_covariance_es
timator.h" |
| 20 #include "webrtc/rtc_base/array_view.h" | |
| 21 | 21 |
| 22 namespace webrtc { | 22 namespace webrtc { |
| 23 | 23 |
| 24 class ApmDataDumper; | 24 class ApmDataDumper; |
| 25 class AudioBuffer; | 25 class AudioBuffer; |
| 26 class EchoDetector; | 26 class EchoDetector; |
| 27 | 27 |
| 28 class ResidualEchoDetector { | 28 class ResidualEchoDetector { |
| 29 public: | 29 public: |
| 30 ResidualEchoDetector(); | 30 ResidualEchoDetector(); |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 // Reliability of the current likelihood. | 85 // Reliability of the current likelihood. |
| 86 float reliability_ = 0.f; | 86 float reliability_ = 0.f; |
| 87 MovingMax recent_likelihood_max_; | 87 MovingMax recent_likelihood_max_; |
| 88 | 88 |
| 89 int log_counter_ = 0; | 89 int log_counter_ = 0; |
| 90 }; | 90 }; |
| 91 | 91 |
| 92 } // namespace webrtc | 92 } // namespace webrtc |
| 93 | 93 |
| 94 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_RESIDUAL_ECHO_DETECTOR_H_ | 94 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_RESIDUAL_ECHO_DETECTOR_H_ |
| OLD | NEW |