| Index: webrtc/modules/audio_processing/aec/aec_core.cc
|
| diff --git a/webrtc/modules/audio_processing/aec/aec_core.cc b/webrtc/modules/audio_processing/aec/aec_core.cc
|
| index 1a45a0c8c01228d563729c1fb7461d928d283baf..e7a10cda686ae3ec53ad3fa60434a9bcb6b1ab06 100644
|
| --- a/webrtc/modules/audio_processing/aec/aec_core.cc
|
| +++ b/webrtc/modules/audio_processing/aec/aec_core.cc
|
| @@ -40,6 +40,8 @@ extern "C" {
|
| #include "webrtc/system_wrappers/include/cpu_features_wrapper.h"
|
| #include "webrtc/typedefs.h"
|
|
|
| +namespace webrtc {
|
| +
|
| // Buffer size (samples)
|
| static const size_t kBufSizePartitions = 250; // 1 second of audio in 16 kHz.
|
|
|
| @@ -1901,3 +1903,4 @@ void WebRtcAec_SetSystemDelay(AecCore* self, int delay) {
|
| assert(delay >= 0);
|
| self->system_delay = delay;
|
| }
|
| +} // namespace webrtc
|
|
|