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

Unified Diff: webrtc/modules/audio_processing/aec/echo_cancellation.cc

Issue 1766663002: Added namespaces in the newly C++ified AEC code (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rebase with latest master Created 4 years, 9 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/aec/echo_cancellation.cc
diff --git a/webrtc/modules/audio_processing/aec/echo_cancellation.cc b/webrtc/modules/audio_processing/aec/echo_cancellation.cc
index c6f95a5cf9c4980b15e563f8d532612221300bba..32496ca33c01057f315c788b9dc82bc17c68127f 100644
--- a/webrtc/modules/audio_processing/aec/echo_cancellation.cc
+++ b/webrtc/modules/audio_processing/aec/echo_cancellation.cc
@@ -29,6 +29,8 @@ extern "C" {
#include "webrtc/modules/audio_processing/aec/echo_cancellation_internal.h"
#include "webrtc/typedefs.h"
+namespace webrtc {
+
// Measured delays [ms]
// Device Chrome GTP
// MacBook Air 10
@@ -881,3 +883,4 @@ static void EstBufDelayExtended(Aec* self) {
self->knownDelay = WEBRTC_SPL_MAX((int)self->filtDelay - 256, 0);
}
}
+} // namespace webrtc

Powered by Google App Engine
This is Rietveld 408576698