ref: 9e1d2de67c1e74334cb452523343faee2ef15341
parent: 355432b0d2c3d700022ab1f6858a9ce58074a46c
author: James Zern <jzern@google.com>
date: Wed Jun 21 14:56:10 EDT 2017
highbd_quantize_fp_32x32: normalize abs_qcoeff type use an int to quiet an unsigned rollover warning similar to: 25110f283 Fix an ubsan warning: vp9_quantizer.c Change-Id: Iedecb79a17249bc18f10c0920f88cf704920f12b
--- a/vp9/encoder/vp9_quantize.c
+++ b/vp9/encoder/vp9_quantize.c
@@ -138,7 +138,7 @@
if (!skip_block) {
for (i = 0; i < n_coeffs; i++) {
- uint32_t abs_qcoeff = 0;
+ int abs_qcoeff = 0;
const int rc = scan[i];
const int coeff = coeff_ptr[rc];
const int coeff_sign = (coeff >> 31);
@@ -147,7 +147,7 @@
if (abs_coeff >= (dequant_ptr[rc != 0] >> 2)) {
const int64_t tmp =
abs_coeff + ROUND_POWER_OF_TWO(round_ptr[rc != 0], 1);
- abs_qcoeff = (uint32_t)((tmp * quant_ptr[rc != 0]) >> 15);
+ abs_qcoeff = (int)((tmp * quant_ptr[rc != 0]) >> 15);
qcoeff_ptr[rc] = (tran_low_t)((abs_qcoeff ^ coeff_sign) - coeff_sign);
dqcoeff_ptr[rc] = qcoeff_ptr[rc] * dequant_ptr[rc != 0] / 2;
}