From: James Zern Date: Wed, 26 Feb 2014 07:11:49 +0000 (-0800) Subject: dct16x16_test: add NEON functions X-Git-Tag: v1.4.0~2246^2~7 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=adbb881497cb1171f8344b77577488f42c94e889;p=libvpx dct16x16_test: add NEON functions note not all functions have NEON implementations: - fdct/fht/iht Change-Id: I6bb7ffe89b8cc23b642e19caf22f04f2d5e39087 --- diff --git a/test/dct16x16_test.cc b/test/dct16x16_test.cc index 8d115fad3..cb5562ec1 100644 --- a/test/dct16x16_test.cc +++ b/test/dct16x16_test.cc @@ -512,6 +512,14 @@ INSTANTIATE_TEST_CASE_P( make_tuple(&vp9_fht16x16_c, &vp9_iht16x16_256_add_c, 2), make_tuple(&vp9_fht16x16_c, &vp9_iht16x16_256_add_c, 3))); +#if HAVE_NEON +INSTANTIATE_TEST_CASE_P( + NEON, Trans16x16DCT, + ::testing::Values( + make_tuple(&vp9_fdct16x16_c, + &vp9_idct16x16_256_add_neon, 0))); +#endif + #if HAVE_SSE2 INSTANTIATE_TEST_CASE_P( SSE2, Trans16x16DCT,