summaryrefslogtreecommitdiff
path: root/chromium/media/base/sinc_resampler.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/media/base/sinc_resampler.cc')
-rw-r--r--chromium/media/base/sinc_resampler.cc5
1 files changed, 2 insertions, 3 deletions
diff --git a/chromium/media/base/sinc_resampler.cc b/chromium/media/base/sinc_resampler.cc
index a2918c3f0d2..5566f64ce86 100644
--- a/chromium/media/base/sinc_resampler.cc
+++ b/chromium/media/base/sinc_resampler.cc
@@ -108,9 +108,8 @@ static double SincScaleFactor(double io_ratio) {
// If we know the minimum architecture at compile time, avoid CPU detection.
// Force NaCl code to use C routines since (at present) nothing there uses these
-// methods and plumbing the -msse built library is non-trivial. iOS lies
-// about its architecture, so we also need to exclude it here.
-#if defined(ARCH_CPU_X86_FAMILY) && !defined(OS_NACL) && !defined(OS_IOS)
+// methods and plumbing the -msse built library is non-trivial.
+#if defined(ARCH_CPU_X86_FAMILY) && !defined(OS_NACL)
#if defined(__SSE__)
#define CONVOLVE_FUNC Convolve_SSE
void SincResampler::InitializeCPUSpecificFeatures() {}