From: James Zern Date: Wed, 26 Feb 2014 07:11:49 +0000 (-0800) Subject: fdct8x8_test: add NEON functions X-Git-Tag: v1.4.0~2246^2~4 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c3331105f2840c432e2224444a7736f207d0e426;p=libvpx fdct8x8_test: add NEON functions FwdTrans8x8HT is disabled as the tests currently fail. note not all functions have NEON implementations: - fdct8x8/fht8x8 Change-Id: I028bdec9a21eaaee2c5865470ab179aac403540e --- diff --git a/test/fdct8x8_test.cc b/test/fdct8x8_test.cc index 98aabe6a2..6f2d7d1c9 100644 --- a/test/fdct8x8_test.cc +++ b/test/fdct8x8_test.cc @@ -313,6 +313,20 @@ INSTANTIATE_TEST_CASE_P( make_tuple(&vp9_fht8x8_c, &vp9_iht8x8_64_add_c, 2), make_tuple(&vp9_fht8x8_c, &vp9_iht8x8_64_add_c, 3))); +#if HAVE_NEON +INSTANTIATE_TEST_CASE_P( + NEON, FwdTrans8x8DCT, + ::testing::Values( + make_tuple(&vp9_fdct8x8_c, &vp9_idct8x8_64_add_neon, 0))); +INSTANTIATE_TEST_CASE_P( + DISABLED_NEON, FwdTrans8x8HT, + ::testing::Values( + make_tuple(&vp9_fht8x8_c, &vp9_iht8x8_64_add_neon, 0), + make_tuple(&vp9_fht8x8_c, &vp9_iht8x8_64_add_neon, 1), + make_tuple(&vp9_fht8x8_c, &vp9_iht8x8_64_add_neon, 2), + make_tuple(&vp9_fht8x8_c, &vp9_iht8x8_64_add_neon, 3))); +#endif + #if HAVE_SSE2 INSTANTIATE_TEST_CASE_P( SSE2, FwdTrans8x8DCT,