summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2022-08-22 17:45:52 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2022-08-22 17:45:52 +0000
commitb652b1da51b0dbb62a88d8a6432f1471fa9e44e6 (patch)
tree28f07af0016c018bb944b62908c5734310e33fdb /test
parent01546349231b07dcc62e77aff7bf92206b752bd3 (diff)
parentebf4caa85791f0fb35d7e7dc717d61652f53e6d8 (diff)
downloadlibvpx-b652b1da51b0dbb62a88d8a6432f1471fa9e44e6.tar
libvpx-b652b1da51b0dbb62a88d8a6432f1471fa9e44e6.tar.gz
libvpx-b652b1da51b0dbb62a88d8a6432f1471fa9e44e6.tar.bz2
libvpx-b652b1da51b0dbb62a88d8a6432f1471fa9e44e6.zip
Merge "[NEON] Added vpx_highbd_quantize_b* functions" into main
Diffstat (limited to 'test')
-rw-r--r--test/vp9_quantize_test.cc23
1 files changed, 16 insertions, 7 deletions
diff --git a/test/vp9_quantize_test.cc b/test/vp9_quantize_test.cc
index 48c818036..4ecdd91b0 100644
--- a/test/vp9_quantize_test.cc
+++ b/test/vp9_quantize_test.cc
@@ -620,14 +620,23 @@ INSTANTIATE_TEST_SUITE_P(
INSTANTIATE_TEST_SUITE_P(
NEON, VP9QuantizeTest,
::testing::Values(
+ make_tuple(&vpx_highbd_quantize_b_neon, &vpx_highbd_quantize_b_c,
+ VPX_BITS_8, 16, false),
+ make_tuple(&vpx_highbd_quantize_b_neon, &vpx_highbd_quantize_b_c,
+ VPX_BITS_10, 16, false),
+ make_tuple(&vpx_highbd_quantize_b_neon, &vpx_highbd_quantize_b_c,
+ VPX_BITS_12, 16, false),
+ make_tuple(&vpx_highbd_quantize_b_32x32_neon,
+ &vpx_highbd_quantize_b_32x32_c, VPX_BITS_8, 32, false),
+ make_tuple(&vpx_highbd_quantize_b_32x32_neon,
+ &vpx_highbd_quantize_b_32x32_c, VPX_BITS_10, 32, false),
+ make_tuple(&vpx_highbd_quantize_b_32x32_neon,
+ &vpx_highbd_quantize_b_32x32_c, VPX_BITS_12, 32, false),
make_tuple(&QuantFPWrapper<vp9_quantize_fp_neon>,
- &QuantFPWrapper<quantize_fp_nz_c>, VPX_BITS_8, 16, true),
- make_tuple(&QuantFPWrapper<vp9_highbd_quantize_fp_neon>,
- &QuantFPWrapper<vp9_highbd_quantize_fp_c>, VPX_BITS_12, 16,
- true),
- make_tuple(&QuantFPWrapper<vp9_highbd_quantize_fp_32x32_neon>,
- &QuantFPWrapper<vp9_highbd_quantize_fp_32x32_c>, VPX_BITS_12,
- 32, true)));
+ &QuantFPWrapper<vp9_quantize_fp_c>, VPX_BITS_8, 16, true),
+ make_tuple(&QuantFPWrapper<vp9_quantize_fp_32x32_neon>,
+ &QuantFPWrapper<vp9_quantize_fp_32x32_c>, VPX_BITS_8, 32,
+ true)));
#else
INSTANTIATE_TEST_SUITE_P(
NEON, VP9QuantizeTest,