Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(53)

Unified Diff: webrtc/modules/audio_processing/aec3/echo_canceller3.h

Issue 2967603002: Added the ability to adjust the AEC3 performance for large rooms (Closed)
Patch Set: Changes in response to reviewer commments Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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..6324cc6bda6cac95984b823422745a91b1c47b81 100644
--- a/webrtc/modules/audio_processing/aec3/echo_canceller3.h
+++ b/webrtc/modules/audio_processing/aec3/echo_canceller3.h
@@ -63,7 +63,9 @@ 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,
bool use_highpass_filter,

Powered by Google App Engine
This is Rietveld 408576698