Index: webrtc/modules/audio_processing/aec3/echo_canceller3.h |
diff --git a/webrtc/modules/audio_processing/aec3/echo_canceller3.h b/webrtc/modules/audio_processing/aec3/echo_canceller3.h |
index aa19c05001509349af466f1cecf36077897ffbc6..7bf7c274d6b2cdae4fccba899475c4e9b64bcf85 100644 |
--- a/webrtc/modules/audio_processing/aec3/echo_canceller3.h |
+++ b/webrtc/modules/audio_processing/aec3/echo_canceller3.h |
@@ -63,9 +63,12 @@ class Aec3RenderQueueItemVerifier { |
class EchoCanceller3 { |
public: |
// Normal c-tor to use. |
- EchoCanceller3(int sample_rate_hz, bool use_highpass_filter); |
+ EchoCanceller3(const AudioProcessing::Config::EchoCanceller3& config, |
+ int sample_rate_hz, |
+ bool use_highpass_filter); |
// Testing c-tor that is used only for testing purposes. |
- EchoCanceller3(int sample_rate_hz, |
+ EchoCanceller3(const AudioProcessing::Config::EchoCanceller3& config, |
+ int sample_rate_hz, |
bool use_highpass_filter, |
std::unique_ptr<BlockProcessor> block_processor); |
~EchoCanceller3(); |