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

Unified Diff: webrtc/modules/audio_processing/aec/aec_rdft.cc

Issue 1955413003: Remove runtime NEON detection (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: gyp syntax Created 4 years, 7 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 | « webrtc/modules/audio_processing/aec/aec_rdft.h ('k') | 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/aec/aec_rdft.cc
diff --git a/webrtc/modules/audio_processing/aec/aec_rdft.cc b/webrtc/modules/audio_processing/aec/aec_rdft.cc
index 03efc103ea6cb72865d5c4444e22f18dbe751c6d..690fe9f34f9c51ebf3f2c91e5553f2b2d9d46f1f 100644
--- a/webrtc/modules/audio_processing/aec/aec_rdft.cc
+++ b/webrtc/modules/audio_processing/aec/aec_rdft.cc
@@ -581,9 +581,5 @@ void aec_rdft_init(void) {
#endif
#if defined(WEBRTC_HAS_NEON)
aec_rdft_init_neon();
-#elif defined(WEBRTC_DETECT_NEON)
- if ((WebRtc_GetCPUFeaturesARM() & kCPUFeatureNEON) != 0) {
- aec_rdft_init_neon();
- }
#endif
}
« no previous file with comments | « webrtc/modules/audio_processing/aec/aec_rdft.h ('k') | webrtc/modules/audio_processing/aecm/aecm_core.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698