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

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

Issue 2348213002: Move the aec_rdft* files to a more proper place beneath APM and make them thread-safe. (Closed)
Patch Set: Rebase Created 4 years, 2 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/aec/aec_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 54c33e346c87f0e1f6160ea4e38599cad44a5b14..b4d875934b0fc22265f651dc76275cfe7c4d5522 100644
--- a/webrtc/modules/audio_processing/BUILD.gn
+++ b/webrtc/modules/audio_processing/BUILD.gn
@@ -22,8 +22,6 @@ rtc_static_library("audio_processing") {
"aec/aec_core.cc",
"aec/aec_core.h",
"aec/aec_core_optimized_methods.h",
- "aec/aec_rdft.cc",
- "aec/aec_rdft.h",
"aec/aec_resampler.cc",
"aec/aec_resampler.h",
"aec/echo_cancellation.cc",
@@ -129,6 +127,9 @@ rtc_static_library("audio_processing") {
"utility/delay_estimator_internal.h",
"utility/delay_estimator_wrapper.cc",
"utility/delay_estimator_wrapper.h",
+ "utility/ooura_fft.cc",
+ "utility/ooura_fft.h",
+ "utility/ooura_fft_tables_common.h",
"vad/common.h",
"vad/gmm.cc",
"vad/gmm.h",
@@ -225,7 +226,7 @@ rtc_static_library("audio_processing") {
if (mips_float_abi == "hard") {
sources += [
"aec/aec_core_mips.cc",
- "aec/aec_rdft_mips.cc",
+ "utility/ooura_fft_mips.cc",
]
}
} else {
@@ -256,7 +257,8 @@ if (current_cpu == "x86" || current_cpu == "x64") {
rtc_static_library("audio_processing_sse2") {
sources = [
"aec/aec_core_sse2.cc",
- "aec/aec_rdft_sse2.cc",
+ "utility/ooura_fft_sse2.cc",
+ "utility/ooura_fft_tables_neon_sse2.h",
]
if (is_posix) {
@@ -275,9 +277,10 @@ if (rtc_build_with_neon) {
rtc_static_library("audio_processing_neon") {
sources = [
"aec/aec_core_neon.cc",
- "aec/aec_rdft_neon.cc",
"aecm/aecm_core_neon.cc",
"ns/nsx_core_neon.c",
+ "utility/ooura_fft_neon.cc",
+ "utility/ooura_fft_tables_neon_sse2.h",
]
if (current_cpu != "arm64") {
« no previous file with comments | « no previous file | webrtc/modules/audio_processing/aec/aec_core.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698