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

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: 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..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();

Powered by Google App Engine
This is Rietveld 408576698