summaryrefslogtreecommitdiff
path: root/test/avg_test.cc
diff options
context:
space:
mode:
authorJohann <johannkoenig@google.com>2017-01-30 16:03:05 -0800
committerJohann <johannkoenig@google.com>2017-02-01 11:55:47 -0800
commitf8d744d91a20c3bc80e82cf5f3aa7e78fe73d164 (patch)
tree123e1945aa57602e53b5ce228889449529a9eb3e /test/avg_test.cc
parent2ba383474dd0f9a2f4abc4d0ef3af434153cdbeb (diff)
downloadlibvpx-f8d744d91a20c3bc80e82cf5f3aa7e78fe73d164.tar
libvpx-f8d744d91a20c3bc80e82cf5f3aa7e78fe73d164.tar.gz
libvpx-f8d744d91a20c3bc80e82cf5f3aa7e78fe73d164.tar.bz2
libvpx-f8d744d91a20c3bc80e82cf5f3aa7e78fe73d164.zip
satd highbd neon: use tran_low_t for coeff
BUG=webm:1365 Change-Id: I43521ad32b6c96737a8ef2b8c327f901fd7eaf84
Diffstat (limited to 'test/avg_test.cc')
-rw-r--r--test/avg_test.cc6
1 files changed, 2 insertions, 4 deletions
diff --git a/test/avg_test.cc b/test/avg_test.cc
index 09cefe816..68a83d66e 100644
--- a/test/avg_test.cc
+++ b/test/avg_test.cc
@@ -379,15 +379,11 @@ INSTANTIATE_TEST_CASE_P(
make_tuple(64, &vpx_int_pro_col_neon,
&vpx_int_pro_col_c)));
-// TODO(jingning): Remove the highbitdepth flag once the SIMD functions are
-// in place.
-#if !CONFIG_VP9_HIGHBITDEPTH
INSTANTIATE_TEST_CASE_P(NEON, SatdTest,
::testing::Values(make_tuple(16, &vpx_satd_neon),
make_tuple(64, &vpx_satd_neon),
make_tuple(256, &vpx_satd_neon),
make_tuple(1024, &vpx_satd_neon)));
-#endif // !CONFIG_VP9_HIGHBITDEPTH
#endif // HAVE_NEON
#if HAVE_MSA
@@ -414,6 +410,8 @@ INSTANTIATE_TEST_CASE_P(
make_tuple(64, &vpx_int_pro_col_msa,
&vpx_int_pro_col_c)));
+// TODO(jingning): Remove the highbitdepth flag once the SIMD functions are
+// in place.
#if !CONFIG_VP9_HIGHBITDEPTH
INSTANTIATE_TEST_CASE_P(MSA, SatdTest,
::testing::Values(make_tuple(16, &vpx_satd_msa),