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

Unified Diff: webrtc/modules/audio_processing/aec/aec_resampler.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/aec_resampler.cc
diff --git a/webrtc/modules/audio_processing/aec/aec_resampler.cc b/webrtc/modules/audio_processing/aec/aec_resampler.cc
index 8528fa65e385609f4dfaa39207c5edce55bd0d8c..cc9046bd43a78e721939695d75324577f826e515 100644
--- a/webrtc/modules/audio_processing/aec/aec_resampler.cc
+++ b/webrtc/modules/audio_processing/aec/aec_resampler.cc
@@ -21,6 +21,8 @@
#include "webrtc/modules/audio_processing/aec/aec_core.h"
+namespace webrtc {
+
enum { kEstimateLengthFrames = 400 };
typedef struct {
@@ -202,3 +204,4 @@ int EstimateSkew(const int* rawSkew,
*skewEst = skew;
return 0;
}
+} // namespace webrtc
« no previous file with comments | « webrtc/modules/audio_processing/aec/aec_resampler.h ('k') | webrtc/modules/audio_processing/aec/echo_cancellation.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698