summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2015-05-27 18:59:57 -0700
committerJames Zern <jzern@google.com>2015-05-29 15:39:08 -0700
commite97b84921941dd40dd6464a59558c75815ac8e9f (patch)
treecb6fe76ad807dbd077c12b26727c0167c3f2a8f0 /test
parentbbea7c95d8412a253099bc9e9555feb4e9df25a5 (diff)
downloadlibvpx-e97b84921941dd40dd6464a59558c75815ac8e9f.tar
libvpx-e97b84921941dd40dd6464a59558c75815ac8e9f.tar.gz
libvpx-e97b84921941dd40dd6464a59558c75815ac8e9f.tar.bz2
libvpx-e97b84921941dd40dd6464a59558c75815ac8e9f.zip
vp9_reconintra_neon: add DC 8x8 predictors
~90% faster over 20M pixels Change-Id: Iab791510cc57c8332c2f9a5da0ed50702e5f5763
Diffstat (limited to 'test')
-rw-r--r--test/test_intra_pred_speed.cc8
1 files changed, 5 insertions, 3 deletions
diff --git a/test/test_intra_pred_speed.cc b/test/test_intra_pred_speed.cc
index 2ec693b97..d10c8ec89 100644
--- a/test/test_intra_pred_speed.cc
+++ b/test/test_intra_pred_speed.cc
@@ -248,9 +248,11 @@ INTRA_PRED_TEST(DSPR2, TestIntraPred8, vp9_dc_predictor_8x8_dspr2, NULL, NULL,
#endif // HAVE_DSPR2
#if HAVE_NEON
-INTRA_PRED_TEST(NEON, TestIntraPred8, NULL, NULL, NULL, NULL,
- vp9_v_predictor_8x8_neon, vp9_h_predictor_8x8_neon, NULL, NULL,
- NULL, NULL, NULL, NULL, vp9_tm_predictor_8x8_neon)
+INTRA_PRED_TEST(NEON, TestIntraPred8, vp9_dc_predictor_8x8_neon,
+ vp9_dc_left_predictor_8x8_neon, vp9_dc_top_predictor_8x8_neon,
+ vp9_dc_128_predictor_8x8_neon, vp9_v_predictor_8x8_neon,
+ vp9_h_predictor_8x8_neon, NULL, NULL, NULL, NULL, NULL, NULL,
+ vp9_tm_predictor_8x8_neon)
#endif // HAVE_NEON