summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2015-06-18 22:17:51 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2015-06-18 22:17:51 +0000
commite77f859d723d7c903a8cbcd312534036ae24b1b0 (patch)
tree5acc5a902f02afbef467f06acdee8b3986a64ea0 /test
parentd1398e9f137445e2f68efd98b1bbb236ae02e878 (diff)
parent79fb3a013eb09c4b0ffae86188fd1fe0f701b261 (diff)
downloadlibvpx-e77f859d723d7c903a8cbcd312534036ae24b1b0.tar
libvpx-e77f859d723d7c903a8cbcd312534036ae24b1b0.tar.gz
libvpx-e77f859d723d7c903a8cbcd312534036ae24b1b0.tar.bz2
libvpx-e77f859d723d7c903a8cbcd312534036ae24b1b0.zip
Merge "vp9_reconintra_neon: add DC 32x32 predictors"
Diffstat (limited to 'test')
-rw-r--r--test/test_intra_pred_speed.cc9
1 files changed, 6 insertions, 3 deletions
diff --git a/test/test_intra_pred_speed.cc b/test/test_intra_pred_speed.cc
index 7e6d326f1..e387857ae 100644
--- a/test/test_intra_pred_speed.cc
+++ b/test/test_intra_pred_speed.cc
@@ -362,9 +362,12 @@ INTRA_PRED_TEST(SSSE3, TestIntraPred32, NULL, NULL, NULL, NULL, NULL,
#endif // HAVE_SSSE3
#if HAVE_NEON
-INTRA_PRED_TEST(NEON, TestIntraPred32, NULL, NULL, NULL, NULL,
- vp9_v_predictor_32x32_neon, vp9_h_predictor_32x32_neon, NULL,
- NULL, NULL, NULL, NULL, NULL, vp9_tm_predictor_32x32_neon)
+INTRA_PRED_TEST(NEON, TestIntraPred32, vp9_dc_predictor_32x32_neon,
+ vp9_dc_left_predictor_32x32_neon,
+ vp9_dc_top_predictor_32x32_neon,
+ vp9_dc_128_predictor_32x32_neon, vp9_v_predictor_32x32_neon,
+ vp9_h_predictor_32x32_neon, NULL, NULL, NULL, NULL, NULL, NULL,
+ vp9_tm_predictor_32x32_neon)
#endif // HAVE_NEON
#if HAVE_MSA