| Index: webrtc/modules/audio_processing/aec/aec_core_sse2.cc
|
| diff --git a/webrtc/modules/audio_processing/aec/aec_core_sse2.cc b/webrtc/modules/audio_processing/aec/aec_core_sse2.cc
|
| index bf194a400ff34d46a0b53b2d0d7adae21192a2a2..e236a38301686c097e08bcaff2b50fa075cf7c50 100644
|
| --- a/webrtc/modules/audio_processing/aec/aec_core_sse2.cc
|
| +++ b/webrtc/modules/audio_processing/aec/aec_core_sse2.cc
|
| @@ -25,6 +25,8 @@ extern "C" {
|
| #include "webrtc/modules/audio_processing/aec/aec_rdft.h"
|
| }
|
|
|
| +namespace webrtc {
|
| +
|
| __inline static float MulRe(float aRe, float aIm, float bRe, float bIm) {
|
| return aRe * bRe - aIm * bIm;
|
| }
|
| @@ -742,3 +744,4 @@ void WebRtcAec_InitAec_SSE2(void) {
|
| WebRtcAec_PartitionDelay = PartitionDelaySSE2;
|
| WebRtcAec_WindowData = WindowDataSSE2;
|
| }
|
| +} // namespace webrtc
|
|
|