| Index: webrtc/common_audio/resampler/sinc_resampler.cc
|
| diff --git a/webrtc/common_audio/resampler/sinc_resampler.cc b/webrtc/common_audio/resampler/sinc_resampler.cc
|
| index 69ac2208cfb3797ea6b5be7cf6eb3b063062da54..c8bc15a362fc75b2aa20c998e682b2b0c295a628 100644
|
| --- a/webrtc/common_audio/resampler/sinc_resampler.cc
|
| +++ b/webrtc/common_audio/resampler/sinc_resampler.cc
|
| @@ -136,12 +136,6 @@ void SincResampler::InitializeCPUSpecificFeatures() {
|
| #elif defined(WEBRTC_HAS_NEON)
|
| #define CONVOLVE_FUNC Convolve_NEON
|
| void SincResampler::InitializeCPUSpecificFeatures() {}
|
| -#elif defined(WEBRTC_DETECT_NEON)
|
| -#define CONVOLVE_FUNC convolve_proc_
|
| -void SincResampler::InitializeCPUSpecificFeatures() {
|
| - convolve_proc_ = WebRtc_GetCPUFeaturesARM() & kCPUFeatureNEON ?
|
| - Convolve_NEON : Convolve_C;
|
| -}
|
| #else
|
| // Unknown architecture.
|
| #define CONVOLVE_FUNC Convolve_C
|
|
|