summaryrefslogtreecommitdiff
path: root/test/comp_avg_pred_test.cc
diff options
context:
space:
mode:
authorJohann <johannkoenig@google.com>2017-05-03 14:58:52 -0700
committerJohann Koenig <johannkoenig@google.com>2017-05-30 22:47:34 +0000
commitf695b30ac2f8bac8af381c0436e88086fd4c7112 (patch)
tree10c37dd8bff46a5537944a39fc9f0ad52f9f5a37 /test/comp_avg_pred_test.cc
parent27beada6d033f15726807f1353ee181ddf0f02e2 (diff)
downloadlibvpx-f695b30ac2f8bac8af381c0436e88086fd4c7112.tar
libvpx-f695b30ac2f8bac8af381c0436e88086fd4c7112.tar.gz
libvpx-f695b30ac2f8bac8af381c0436e88086fd4c7112.tar.bz2
libvpx-f695b30ac2f8bac8af381c0436e88086fd4c7112.zip
comp_avg_pred neon: used by sub pixel avg variance
BUG=webm:1423 Change-Id: I33de537f238f58f89b7a6c1c2d6e8110de4b8804
Diffstat (limited to 'test/comp_avg_pred_test.cc')
-rw-r--r--test/comp_avg_pred_test.cc6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/comp_avg_pred_test.cc b/test/comp_avg_pred_test.cc
index 3feba7127..dce673eec 100644
--- a/test/comp_avg_pred_test.cc
+++ b/test/comp_avg_pred_test.cc
@@ -156,6 +156,12 @@ INSTANTIATE_TEST_CASE_P(C, AvgPredTest,
INSTANTIATE_TEST_CASE_P(SSE2, AvgPredTest,
::testing::Values(&vpx_comp_avg_pred_sse2));
#endif // HAVE_SSE2
+
+#if HAVE_NEON
+INSTANTIATE_TEST_CASE_P(NEON, AvgPredTest,
+ ::testing::Values(&vpx_comp_avg_pred_neon));
+#endif // HAVE_NEON
+
#if HAVE_VSX
INSTANTIATE_TEST_CASE_P(VSX, AvgPredTest,
::testing::Values(&vpx_comp_avg_pred_vsx));