Home
last modified time | relevance | path

Searched refs:abs_qcoeff (Results 1 – 3 of 3) sorted by relevance

/external/libvpx/libvpx/vpx_dsp/
Dquantize.c54 const int abs_qcoeff = (int)((tmp * quant) >> 16); in vpx_highbd_quantize_dc() local
55 qcoeff_ptr[0] = (tran_low_t)((abs_qcoeff ^ coeff_sign) - coeff_sign); in vpx_highbd_quantize_dc()
57 if (abs_qcoeff) eob = 0; in vpx_highbd_quantize_dc()
106 const int abs_qcoeff = (int)((tmp * quant) >> 15); in vpx_highbd_quantize_dc_32x32() local
107 qcoeff_ptr[0] = (tran_low_t)((abs_qcoeff ^ coeff_sign) - coeff_sign); in vpx_highbd_quantize_dc_32x32()
109 if (abs_qcoeff) eob = 0; in vpx_highbd_quantize_dc_32x32()
204 const uint32_t abs_qcoeff = in vpx_highbd_quantize_b_c() local
206 qcoeff_ptr[rc] = (tran_low_t)((abs_qcoeff ^ coeff_sign) - coeff_sign); in vpx_highbd_quantize_b_c()
208 if (abs_qcoeff) eob = i; in vpx_highbd_quantize_b_c()
311 const uint32_t abs_qcoeff = in vpx_highbd_quantize_b_32x32_c() local
[all …]
/external/libvpx/libvpx/vpx_dsp/x86/
Dhighbd_quantize_intrin_sse2.c82 const uint32_t abs_qcoeff = in vpx_highbd_quantize_b_sse2() local
84 qcoeff_ptr[k] = (int)(abs_qcoeff ^ coeff_sign[j]) - coeff_sign[j]; in vpx_highbd_quantize_b_sse2()
86 if (abs_qcoeff) eob_i = iscan[k] > eob_i ? iscan[k] : eob_i; in vpx_highbd_quantize_b_sse2()
145 const uint32_t abs_qcoeff = in vpx_highbd_quantize_b_32x32_sse2() local
147 qcoeff_ptr[rc] = (int)(abs_qcoeff ^ coeff_sign) - coeff_sign; in vpx_highbd_quantize_b_32x32_sse2()
149 if (abs_qcoeff) eob = iscan[idx_arr[i]] > eob ? iscan[idx_arr[i]] : eob; in vpx_highbd_quantize_b_32x32_sse2()
/external/libvpx/libvpx/vp9/encoder/
Dvp9_quantize.c80 const int abs_qcoeff = (int)((tmp * quant_ptr[rc != 0]) >> 16); in vp9_highbd_quantize_fp_c() local
81 qcoeff_ptr[rc] = (tran_low_t)((abs_qcoeff ^ coeff_sign) - coeff_sign); in vp9_highbd_quantize_fp_c()
83 if (abs_qcoeff) eob = i; in vp9_highbd_quantize_fp_c()
141 uint32_t abs_qcoeff = 0; in vp9_highbd_quantize_fp_32x32_c() local
150 abs_qcoeff = (uint32_t)((tmp * quant_ptr[rc != 0]) >> 15); in vp9_highbd_quantize_fp_32x32_c()
151 qcoeff_ptr[rc] = (tran_low_t)((abs_qcoeff ^ coeff_sign) - coeff_sign); in vp9_highbd_quantize_fp_32x32_c()
155 if (abs_qcoeff) eob = i; in vp9_highbd_quantize_fp_32x32_c()