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

Unified Diff: webrtc/modules/audio_processing/aec3/aec3_common.cc

Issue 2834073005: Added ARM Neon SIMD optimizations for AEC3 (Closed)
Patch Set: Changes in response to reviewer comments Created 3 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/aec3/aec3_common.cc
diff --git a/webrtc/modules/audio_processing/aec3/aec3_common.cc b/webrtc/modules/audio_processing/aec3/aec3_common.cc
index da0f2c4f19fd89d9b4216e931e6bdceee581adc4..ae0624703b034dda94df981fa815256e6470f5d6 100644
--- a/webrtc/modules/audio_processing/aec3/aec3_common.cc
+++ b/webrtc/modules/audio_processing/aec3/aec3_common.cc
@@ -21,6 +21,11 @@ Aec3Optimization DetectOptimization() {
return Aec3Optimization::kSse2;
}
#endif
+
+#if defined(WEBRTC_HAS_NEON)
+ return Aec3Optimization::kNeon;
+#endif
+
return Aec3Optimization::kNone;
}
« no previous file with comments | « webrtc/modules/audio_processing/aec3/aec3_common.h ('k') | webrtc/modules/audio_processing/aec3/matched_filter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698