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

Unified Diff: webrtc/modules/audio_processing/aecm/aecm_core_mips.cc

Issue 1857153002: Changed AECM to be built using C++ (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Added external declaration to the delay estimator wrapper inclusion Created 4 years, 8 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/aecm/aecm_core_mips.cc
diff --git a/webrtc/modules/audio_processing/aecm/aecm_core_mips.c b/webrtc/modules/audio_processing/aecm/aecm_core_mips.cc
similarity index 99%
rename from webrtc/modules/audio_processing/aecm/aecm_core_mips.c
rename to webrtc/modules/audio_processing/aecm/aecm_core_mips.cc
index 3ca9982ebfa4321716687d73d2c056add62f133d..bca32fea1c042ac643d38cae82be2f3d51c85b02 100644
--- a/webrtc/modules/audio_processing/aecm/aecm_core_mips.c
+++ b/webrtc/modules/audio_processing/aecm/aecm_core_mips.cc
@@ -13,7 +13,9 @@
#include <assert.h>
#include "webrtc/modules/audio_processing/aecm/echo_control_mobile.h"
+extern "C" {
#include "webrtc/modules/audio_processing/utility/delay_estimator_wrapper.h"
+}
static const ALIGN8_BEG int16_t WebRtcAecm_kSqrtHanning[] ALIGN8_END = {
0, 399, 798, 1196, 1594, 1990, 2386, 2780, 3172,
@@ -1563,4 +1565,3 @@ static void ComfortNoise(AecmCore* aecm,
sgn = ((int)tt) >> 31;
out[PART_LEN].imag = sgn == (int16_t)(tt >> 15) ? (int16_t)tt : (16384 ^ sgn);
}
-
« no previous file with comments | « webrtc/modules/audio_processing/aecm/aecm_core_mips.c ('k') | webrtc/modules/audio_processing/aecm/aecm_core_neon.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698