summaryrefslogtreecommitdiff
path: root/test/predict_test.cc
diff options
context:
space:
mode:
authorJohann <johann.koenig@duck.com>2018-10-25 12:23:03 -0700
committerJohann <johann.koenig@duck.com>2018-10-25 15:05:28 -0700
commit5caec339bea5e37ae8707f9d783feb2aa51cd111 (patch)
treedaa592ba5c5e5ab14d6605cf4c286228b65e547e /test/predict_test.cc
parent13a946ec77d9ea8e3547f6016847e8d2c8f331ab (diff)
downloadlibvpx-5caec339bea5e37ae8707f9d783feb2aa51cd111.tar
libvpx-5caec339bea5e37ae8707f9d783feb2aa51cd111.tar.gz
libvpx-5caec339bea5e37ae8707f9d783feb2aa51cd111.tar.bz2
libvpx-5caec339bea5e37ae8707f9d783feb2aa51cd111.zip
vp8 bilinear: rewrite 4x4
~20% faster than the MMX. Removes the last usage of vp8_bilinear_filters_x86_[48]. Change-Id: Iee976fab9655d0020440f26c4403ce50103af913
Diffstat (limited to 'test/predict_test.cc')
-rw-r--r--test/predict_test.cc8
1 files changed, 2 insertions, 6 deletions
diff --git a/test/predict_test.cc b/test/predict_test.cc
index a8fcfc0b1..1c2f2d11d 100644
--- a/test/predict_test.cc
+++ b/test/predict_test.cc
@@ -379,17 +379,13 @@ INSTANTIATE_TEST_CASE_P(
make_tuple(8, 4, &vp8_bilinear_predict8x4_neon),
make_tuple(4, 4, &vp8_bilinear_predict4x4_neon)));
#endif
-#if HAVE_MMX
-INSTANTIATE_TEST_CASE_P(
- MMX, BilinearPredictTest,
- ::testing::Values(make_tuple(4, 4, &vp8_bilinear_predict4x4_mmx)));
-#endif
#if HAVE_SSE2
INSTANTIATE_TEST_CASE_P(
SSE2, BilinearPredictTest,
::testing::Values(make_tuple(16, 16, &vp8_bilinear_predict16x16_sse2),
make_tuple(8, 8, &vp8_bilinear_predict8x8_sse2),
- make_tuple(8, 4, &vp8_bilinear_predict8x4_sse2)));
+ make_tuple(8, 4, &vp8_bilinear_predict8x4_sse2),
+ make_tuple(4, 4, &vp8_bilinear_predict4x4_sse2)));
#endif
#if HAVE_SSSE3
INSTANTIATE_TEST_CASE_P(