From 00608eb1dea3206b2ea60236b5aa990d6d2c317f Mon Sep 17 00:00:00 2001 From: Johann Date: Sat, 24 Sep 2022 10:55:52 +0900 Subject: [PATCH] quantize: add untested function vp9_quantize_fp_sse2 was only tested in non-hbd configuration. Missed when fixing this for vpx_quantize_b_sse2. Change-Id: Ide346e5727d74281c774f605c90d280050e0bf62 --- test/vp9_quantize_test.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/vp9_quantize_test.cc b/test/vp9_quantize_test.cc index a81775fd9..7bb0bee51 100644 --- a/test/vp9_quantize_test.cc +++ b/test/vp9_quantize_test.cc @@ -512,6 +512,8 @@ INSTANTIATE_TEST_SUITE_P( ::testing::Values( make_tuple(&vpx_quantize_b_sse2, &vpx_quantize_b_c, VPX_BITS_8, 16, false), + make_tuple(&QuantFPWrapper, + &QuantFPWrapper, VPX_BITS_8, 16, true), make_tuple(&vpx_highbd_quantize_b_sse2, &vpx_highbd_quantize_b_c, VPX_BITS_8, 16, false), make_tuple(&vpx_highbd_quantize_b_sse2, &vpx_highbd_quantize_b_c, -- 2.40.0