Searched defs:abs_coeff (Results 1 - 1 of 1) sorted by relevance

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
H A Dvp9_quantize.c57 const int abs_coeff = (coeff ^ coeff_sign) - coeff_sign; local
59 if (abs_coeff >= zbins[rc != 0]) {
60 int tmp = clamp(abs_coeff + round_ptr[rc != 0], INT16_MIN, INT16_MAX);
113 int abs_coeff = (coeff ^ coeff_sign) - coeff_sign; local
114 abs_coeff += ROUND_POWER_OF_TWO(round_ptr[rc != 0], 1);
115 abs_coeff = clamp(abs_coeff, INT16_MIN, INT16_MAX);
116 tmp = ((((abs_coeff * quant_ptr[rc != 0]) >> 16) + abs_coeff) *

Completed in 37 milliseconds