From b97526ed651679789d14780ba3c636af83feafd7 Mon Sep 17 00:00:00 2001 From: peah Date: Tue, 12 Apr 2016 01:20:43 -0700 Subject: [PATCH] Corrected include of C++ header file in AECM that was done using external inclusion BUG= Review URL: https://codereview.webrtc.org/1876143002 Cr-Commit-Position: refs/heads/master@{#12327} --- webrtc/modules/audio_processing/aecm/aecm_core.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/webrtc/modules/audio_processing/aecm/aecm_core.cc b/webrtc/modules/audio_processing/aecm/aecm_core.cc index 5c3db1a294..8a5524e04d 100644 --- a/webrtc/modules/audio_processing/aecm/aecm_core.cc +++ b/webrtc/modules/audio_processing/aecm/aecm_core.cc @@ -17,7 +17,9 @@ extern "C" { #include "webrtc/common_audio/ring_buffer.h" #include "webrtc/common_audio/signal_processing/include/real_fft.h" +} #include "webrtc/modules/audio_processing/aecm/echo_control_mobile.h" +extern "C" { #include "webrtc/modules/audio_processing/utility/delay_estimator_wrapper.h" #include "webrtc/system_wrappers/include/cpu_features_wrapper.h" }