blob: 4e25b2521512acd6e39cfa5f0bc2d3b48edbd243 [file] [log] [blame]
peah69221db2017-01-27 03:28:19 -08001/*
2 * Copyright (c) 2017 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#ifndef WEBRTC_MODULES_AUDIO_PROCESSING_AEC3_ECHO_REMOVER_H_
12#define WEBRTC_MODULES_AUDIO_PROCESSING_AEC3_ECHO_REMOVER_H_
13
14#include <vector>
15
16#include "webrtc/base/optional.h"
17#include "webrtc/modules/audio_processing/aec3/echo_path_variability.h"
peahcf02cf12017-04-05 14:18:07 -070018#include "webrtc/modules/audio_processing/aec3/render_buffer.h"
peah69221db2017-01-27 03:28:19 -080019
20namespace webrtc {
21
22// Class for removing the echo from the capture signal.
23class EchoRemover {
24 public:
25 static EchoRemover* Create(int sample_rate_hz);
26 virtual ~EchoRemover() = default;
27
28 // Removes the echo from a block of samples from the capture signal. The
29 // supplied render signal is assumed to be pre-aligned with the capture
30 // signal.
peahcf02cf12017-04-05 14:18:07 -070031 virtual void ProcessCapture(
peah69221db2017-01-27 03:28:19 -080032 const rtc::Optional<size_t>& echo_path_delay_samples,
33 const EchoPathVariability& echo_path_variability,
34 bool capture_signal_saturation,
peahcf02cf12017-04-05 14:18:07 -070035 const RenderBuffer& render_buffer,
peah69221db2017-01-27 03:28:19 -080036 std::vector<std::vector<float>>* capture) = 0;
37
38 // Updates the status on whether echo leakage is detected in the output of the
39 // echo remover.
40 virtual void UpdateEchoLeakageStatus(bool leakage_detected) = 0;
41};
42
43} // namespace webrtc
44
45#endif // WEBRTC_MODULES_AUDIO_PROCESSING_AEC3_ECHO_REMOVER_H_