summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJohann <johann@duck.com>2022-11-12 08:23:17 +0900
committerJohann Koenig <johann@duck.com>2023-03-17 12:52:15 +0000
commit02fd7d6aeb1ea6d8eeef17315a6a7c4ffa6d7352 (patch)
treea4414afd1d480acbedc80554e6c0a87aa6227f4c /test
parentbbd6bc85a39a4957e895c18e92c67d5fb6a32452 (diff)
downloadlibvpx-02fd7d6aeb1ea6d8eeef17315a6a7c4ffa6d7352.tar.gz
Reland "quantize: simplifly highbd 32x32_b args"
This is a reland of commit 573f5e662b544dbc553d73fa2b61055c30dfe8cc Alignment issue with tests fixed in crrev.com/c/webm/libvpx/+/4305500 Original change's description: > quantize: simplify highbd 32x32_b args > > Change-Id: I431a41279c4c4193bc70cfe819da6ea7e1d2fba1 Change-Id: Ic868b6f987c99d88672858fedd092fa49c125e19
Diffstat (limited to 'test')
-rw-r--r--test/vp9_quantize_test.cc54
1 files changed, 27 insertions, 27 deletions
diff --git a/test/vp9_quantize_test.cc b/test/vp9_quantize_test.cc
index 6a8f1dafb..bff2fa59a 100644
--- a/test/vp9_quantize_test.cc
+++ b/test/vp9_quantize_test.cc
@@ -557,15 +557,15 @@ INSTANTIATE_TEST_SUITE_P(
make_tuple(&QuantWrapper<vpx_highbd_quantize_b_sse2>,
&QuantWrapper<vpx_highbd_quantize_b_c>, VPX_BITS_12, 16,
false),
- make_tuple(&QuantWrapper<vpx_highbd_quantize_b_32x32_sse2>,
- &QuantWrapper<vpx_highbd_quantize_b_32x32_c>, VPX_BITS_8, 32,
- false),
- make_tuple(&QuantWrapper<vpx_highbd_quantize_b_32x32_sse2>,
- &QuantWrapper<vpx_highbd_quantize_b_32x32_c>, VPX_BITS_10,
- 32, false),
- make_tuple(&QuantWrapper<vpx_highbd_quantize_b_32x32_sse2>,
- &QuantWrapper<vpx_highbd_quantize_b_32x32_c>, VPX_BITS_12,
- 32, false)));
+ make_tuple(&Quant32x32Wrapper<vpx_highbd_quantize_b_32x32_sse2>,
+ &Quant32x32Wrapper<vpx_highbd_quantize_b_32x32_c>,
+ VPX_BITS_8, 32, false),
+ make_tuple(&Quant32x32Wrapper<vpx_highbd_quantize_b_32x32_sse2>,
+ &Quant32x32Wrapper<vpx_highbd_quantize_b_32x32_c>,
+ VPX_BITS_10, 32, false),
+ make_tuple(&Quant32x32Wrapper<vpx_highbd_quantize_b_32x32_sse2>,
+ &Quant32x32Wrapper<vpx_highbd_quantize_b_32x32_c>,
+ VPX_BITS_12, 32, false)));
#else
INSTANTIATE_TEST_SUITE_P(
@@ -634,15 +634,15 @@ INSTANTIATE_TEST_SUITE_P(
make_tuple(&Quant32x32Wrapper<vpx_quantize_b_32x32_avx2>,
&Quant32x32Wrapper<vpx_quantize_b_32x32_c>, VPX_BITS_8, 32,
false),
- make_tuple(&QuantWrapper<vpx_highbd_quantize_b_32x32_avx2>,
- &QuantWrapper<vpx_highbd_quantize_b_32x32_c>, VPX_BITS_8, 32,
- false),
- make_tuple(&QuantWrapper<vpx_highbd_quantize_b_32x32_avx2>,
- &QuantWrapper<vpx_highbd_quantize_b_32x32_c>, VPX_BITS_10,
- 32, false),
- make_tuple(&QuantWrapper<vpx_highbd_quantize_b_32x32_avx2>,
- &QuantWrapper<vpx_highbd_quantize_b_32x32_c>, VPX_BITS_12,
- 32, false)));
+ make_tuple(&Quant32x32Wrapper<vpx_highbd_quantize_b_32x32_avx2>,
+ &Quant32x32Wrapper<vpx_highbd_quantize_b_32x32_c>,
+ VPX_BITS_8, 32, false),
+ make_tuple(&Quant32x32Wrapper<vpx_highbd_quantize_b_32x32_avx2>,
+ &Quant32x32Wrapper<vpx_highbd_quantize_b_32x32_c>,
+ VPX_BITS_10, 32, false),
+ make_tuple(&Quant32x32Wrapper<vpx_highbd_quantize_b_32x32_avx2>,
+ &Quant32x32Wrapper<vpx_highbd_quantize_b_32x32_c>,
+ VPX_BITS_12, 32, false)));
#else
INSTANTIATE_TEST_SUITE_P(
AVX2, VP9QuantizeTest,
@@ -680,15 +680,15 @@ INSTANTIATE_TEST_SUITE_P(
make_tuple(&Quant32x32Wrapper<vpx_quantize_b_32x32_neon>,
&Quant32x32Wrapper<vpx_quantize_b_32x32_c>, VPX_BITS_8, 32,
false),
- make_tuple(&QuantWrapper<vpx_highbd_quantize_b_32x32_neon>,
- &QuantWrapper<vpx_highbd_quantize_b_32x32_c>, VPX_BITS_8, 32,
- false),
- make_tuple(&QuantWrapper<vpx_highbd_quantize_b_32x32_neon>,
- &QuantWrapper<vpx_highbd_quantize_b_32x32_c>, VPX_BITS_10,
- 32, false),
- make_tuple(&QuantWrapper<vpx_highbd_quantize_b_32x32_neon>,
- &QuantWrapper<vpx_highbd_quantize_b_32x32_c>, VPX_BITS_12,
- 32, false),
+ make_tuple(&Quant32x32Wrapper<vpx_highbd_quantize_b_32x32_neon>,
+ &Quant32x32Wrapper<vpx_highbd_quantize_b_32x32_c>,
+ VPX_BITS_8, 32, false),
+ make_tuple(&Quant32x32Wrapper<vpx_highbd_quantize_b_32x32_neon>,
+ &Quant32x32Wrapper<vpx_highbd_quantize_b_32x32_c>,
+ VPX_BITS_10, 32, false),
+ make_tuple(&Quant32x32Wrapper<vpx_highbd_quantize_b_32x32_neon>,
+ &Quant32x32Wrapper<vpx_highbd_quantize_b_32x32_c>,
+ VPX_BITS_12, 32, false),
make_tuple(&QuantFPWrapper<vp9_quantize_fp_neon>,
&QuantFPWrapper<vp9_quantize_fp_c>, VPX_BITS_8, 16, true),
make_tuple(&QuantFPWrapper<vp9_quantize_fp_32x32_neon>,