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

Unified Diff: webrtc/modules/audio_processing/BUILD.gn

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
« no previous file with comments | « no previous file | webrtc/modules/audio_processing/aecm/aecm_core.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/modules/audio_processing/BUILD.gn
diff --git a/webrtc/modules/audio_processing/BUILD.gn b/webrtc/modules/audio_processing/BUILD.gn
index 22c904d52f2d2c350de875abb8a1a41a0e83e687..1060ec8871ff2ca03701a99749df7eca0c43cdb0 100644
--- a/webrtc/modules/audio_processing/BUILD.gn
+++ b/webrtc/modules/audio_processing/BUILD.gn
@@ -32,9 +32,9 @@ source_set("audio_processing") {
"aec/echo_cancellation.cc",
"aec/echo_cancellation.h",
"aec/echo_cancellation_internal.h",
- "aecm/aecm_core.c",
+ "aecm/aecm_core.cc",
"aecm/aecm_core.h",
- "aecm/echo_control_mobile.c",
+ "aecm/echo_control_mobile.cc",
"aecm/echo_control_mobile.h",
"agc/agc.cc",
"agc/agc.h",
@@ -196,7 +196,7 @@ source_set("audio_processing") {
}
if (current_cpu == "mipsel") {
- sources += [ "aecm/aecm_core_mips.c" ]
+ sources += [ "aecm/aecm_core_mips.cc" ]
if (mips_float_abi == "hard") {
sources += [
"aec/aec_core_mips.cc",
@@ -204,7 +204,7 @@ source_set("audio_processing") {
]
}
} else {
- sources += [ "aecm/aecm_core_c.c" ]
+ sources += [ "aecm/aecm_core_c.cc" ]
}
if (is_win) {
@@ -258,7 +258,7 @@ if (rtc_build_with_neon) {
sources = [
"aec/aec_core_neon.cc",
"aec/aec_rdft_neon.c",
- "aecm/aecm_core_neon.c",
+ "aecm/aecm_core_neon.cc",
"ns/nsx_core_neon.c",
]
« no previous file with comments | « no previous file | webrtc/modules/audio_processing/aecm/aecm_core.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698