| Index: source/libvpx/test/intrapred_test.cc
|
| ===================================================================
|
| --- source/libvpx/test/intrapred_test.cc (revision 291857)
|
| +++ source/libvpx/test/intrapred_test.cc (working copy)
|
| @@ -294,6 +294,11 @@
|
| ::testing::Values(
|
| vp8_build_intra_predictors_mby_s_ssse3));
|
| #endif
|
| +#if HAVE_NEON
|
| +INSTANTIATE_TEST_CASE_P(NEON, IntraPredYTest,
|
| + ::testing::Values(
|
| + vp8_build_intra_predictors_mby_s_neon));
|
| +#endif
|
|
|
| typedef void (*IntraPredUvFunc)(MACROBLOCKD *x,
|
| uint8_t *uabove_row,
|
| @@ -382,5 +387,10 @@
|
| ::testing::Values(
|
| vp8_build_intra_predictors_mbuv_s_ssse3));
|
| #endif
|
| +#if HAVE_NEON
|
| +INSTANTIATE_TEST_CASE_P(NEON, IntraPredUVTest,
|
| + ::testing::Values(
|
| + vp8_build_intra_predictors_mbuv_s_neon));
|
| +#endif
|
|
|
| } // namespace
|
|
|