Index: source/planar_functions.cc |
diff --git a/source/planar_functions.cc b/source/planar_functions.cc |
index 062da932f9279fb8978b6f2a6157b95ed04faa90..536e1d52805b37428628d7f5d81aff8f82f2f9c8 100644 |
--- a/source/planar_functions.cc |
+++ b/source/planar_functions.cc |
@@ -1870,14 +1870,6 @@ int InterpolatePlane(const uint8* src0, int src_stride0, |
height = 1; |
src_stride0 = src_stride1 = dst_stride = 0; |
} |
-#if defined(HAS_INTERPOLATEROW_SSE2) |
- if (TestCpuFlag(kCpuHasSSE2)) { |
- InterpolateRow = InterpolateRow_Any_SSE2; |
- if (IS_ALIGNED(width, 16)) { |
- InterpolateRow = InterpolateRow_SSE2; |
- } |
- } |
-#endif |
#if defined(HAS_INTERPOLATEROW_SSSE3) |
if (TestCpuFlag(kCpuHasSSSE3)) { |
InterpolateRow = InterpolateRow_Any_SSSE3; |
@@ -2467,14 +2459,6 @@ int YUY2ToNV12(const uint8* src_yuy2, int src_stride_yuy2, |
} |
} |
#endif |
-#if defined(HAS_INTERPOLATEROW_SSE2) |
- if (TestCpuFlag(kCpuHasSSE2)) { |
- InterpolateRow = InterpolateRow_Any_SSE2; |
- if (IS_ALIGNED(width, 16)) { |
- InterpolateRow = InterpolateRow_SSE2; |
- } |
- } |
-#endif |
#if defined(HAS_INTERPOLATEROW_SSSE3) |
if (TestCpuFlag(kCpuHasSSSE3)) { |
InterpolateRow = InterpolateRow_Any_SSSE3; |
@@ -2571,14 +2555,6 @@ int UYVYToNV12(const uint8* src_uyvy, int src_stride_uyvy, |
} |
} |
#endif |
-#if defined(HAS_INTERPOLATEROW_SSE2) |
- if (TestCpuFlag(kCpuHasSSE2)) { |
- InterpolateRow = InterpolateRow_Any_SSE2; |
- if (IS_ALIGNED(width, 16)) { |
- InterpolateRow = InterpolateRow_SSE2; |
- } |
- } |
-#endif |
#if defined(HAS_INTERPOLATEROW_SSSE3) |
if (TestCpuFlag(kCpuHasSSSE3)) { |
InterpolateRow = InterpolateRow_Any_SSSE3; |