summaryrefslogtreecommitdiff
path: root/test/vp9_quantize_test.cc
diff options
context:
space:
mode:
authorJohann <johann.koenig@gmail.com>2022-09-18 10:26:00 +0900
committerJohann <johann.koenig@gmail.com>2022-09-18 10:26:00 +0900
commit884837a5805b77aec2e16d3dee910d59081ba9b0 (patch)
treeb68518dbee7fb46e2eb77fd6721e6275f49f6560 /test/vp9_quantize_test.cc
parent34284e930a24f48d64220d34bc355e0883a3c569 (diff)
downloadlibvpx-884837a5805b77aec2e16d3dee910d59081ba9b0.tar
libvpx-884837a5805b77aec2e16d3dee910d59081ba9b0.tar.gz
libvpx-884837a5805b77aec2e16d3dee910d59081ba9b0.tar.bz2
libvpx-884837a5805b77aec2e16d3dee910d59081ba9b0.zip
quantize: test lowbd in highbd builds
Change-Id: I7af273e979415a8b8cafb7494728d2736862f4a5
Diffstat (limited to 'test/vp9_quantize_test.cc')
-rw-r--r--test/vp9_quantize_test.cc8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/vp9_quantize_test.cc b/test/vp9_quantize_test.cc
index 4ecdd91b0..a81775fd9 100644
--- a/test/vp9_quantize_test.cc
+++ b/test/vp9_quantize_test.cc
@@ -586,12 +586,16 @@ INSTANTIATE_TEST_SUITE_P(
make_tuple(&QuantFPWrapper<vp9_highbd_quantize_fp_32x32_avx2>,
&QuantFPWrapper<vp9_highbd_quantize_fp_32x32_c>, VPX_BITS_12,
32, true),
+ make_tuple(&vpx_quantize_b_avx2, &vpx_quantize_b_c, VPX_BITS_8, 16,
+ false),
make_tuple(&vpx_highbd_quantize_b_avx2, &vpx_highbd_quantize_b_c,
VPX_BITS_8, 16, false),
make_tuple(&vpx_highbd_quantize_b_avx2, &vpx_highbd_quantize_b_c,
VPX_BITS_10, 16, false),
make_tuple(&vpx_highbd_quantize_b_avx2, &vpx_highbd_quantize_b_c,
VPX_BITS_12, 16, false),
+ make_tuple(&vpx_quantize_b_32x32_avx2, &vpx_quantize_b_32x32_c,
+ VPX_BITS_8, 32, false),
make_tuple(&vpx_highbd_quantize_b_32x32_avx2,
&vpx_highbd_quantize_b_32x32_c, VPX_BITS_8, 32, false),
make_tuple(&vpx_highbd_quantize_b_32x32_avx2,
@@ -620,12 +624,16 @@ INSTANTIATE_TEST_SUITE_P(
INSTANTIATE_TEST_SUITE_P(
NEON, VP9QuantizeTest,
::testing::Values(
+ make_tuple(&vpx_quantize_b_neon, &vpx_quantize_b_c, VPX_BITS_8, 16,
+ false),
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_quantize_b_32x32_neon, &vpx_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_8, 32, false),
make_tuple(&vpx_highbd_quantize_b_32x32_neon,