Home
last modified time | relevance | path

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

/external/libvpx/libvpx/vpx_dsp/
Dquantize.c57 const int abs_qcoeff = (int)((tmp * quant) >> 16); in vpx_highbd_quantize_dc() local
58 qcoeff_ptr[0] = (tran_low_t)((abs_qcoeff ^ coeff_sign) - coeff_sign); in vpx_highbd_quantize_dc()
60 if (abs_qcoeff) eob = 0; in vpx_highbd_quantize_dc()
108 const int abs_qcoeff = (int)((tmp * quant) >> 15); in vpx_highbd_quantize_dc_32x32() local
109 qcoeff_ptr[0] = (tran_low_t)((abs_qcoeff ^ coeff_sign) - coeff_sign); in vpx_highbd_quantize_dc_32x32()
111 if (abs_qcoeff) eob = 0; in vpx_highbd_quantize_dc_32x32()
207 const int abs_qcoeff = (int)((tmp2 * quant_shift_ptr[rc != 0]) >> 16); in vpx_highbd_quantize_b_c() local
208 qcoeff_ptr[rc] = (tran_low_t)((abs_qcoeff ^ coeff_sign) - coeff_sign); in vpx_highbd_quantize_b_c()
210 if (abs_qcoeff) eob = i; in vpx_highbd_quantize_b_c()
318 const int abs_qcoeff = (int)((tmp2 * quant_shift_ptr[rc != 0]) >> 15); in vpx_highbd_quantize_b_32x32_c() local
[all …]
/external/libaom/libaom/aom_dsp/x86/
Dhighbd_quantize_intrin_sse2.c81 const uint32_t abs_qcoeff = in aom_highbd_quantize_b_sse2() local
83 qcoeff_ptr[k] = (int)(abs_qcoeff ^ coeff_sign[j]) - coeff_sign[j]; in aom_highbd_quantize_b_sse2()
85 if (abs_qcoeff) eob_i = iscan[k] > eob_i ? iscan[k] : eob_i; in aom_highbd_quantize_b_sse2()
141 const uint32_t abs_qcoeff = in aom_highbd_quantize_b_32x32_sse2() local
143 qcoeff_ptr[rc] = (int)(abs_qcoeff ^ coeff_sign) - coeff_sign; in aom_highbd_quantize_b_32x32_sse2()
145 if (abs_qcoeff) eob = iscan[idx_arr[i]] > eob ? iscan[idx_arr[i]] : eob; in aom_highbd_quantize_b_32x32_sse2()
199 const uint32_t abs_qcoeff = in aom_highbd_quantize_b_64x64_sse2() local
201 qcoeff_ptr[rc] = (int)(abs_qcoeff ^ coeff_sign) - coeff_sign; in aom_highbd_quantize_b_64x64_sse2()
203 if (abs_qcoeff) eob = iscan[idx_arr[i]] > eob ? iscan[idx_arr[i]] : eob; in aom_highbd_quantize_b_64x64_sse2()
/external/libvpx/libvpx/vpx_dsp/x86/
Dhighbd_quantize_intrin_sse2.c85 const uint32_t abs_qcoeff = in vpx_highbd_quantize_b_sse2() local
87 qcoeff_ptr[k] = (int)(abs_qcoeff ^ coeff_sign[j]) - coeff_sign[j]; in vpx_highbd_quantize_b_sse2()
89 if (abs_qcoeff) eob_i = iscan[k] > eob_i ? iscan[k] : eob_i; in vpx_highbd_quantize_b_sse2()
148 const uint32_t abs_qcoeff = in vpx_highbd_quantize_b_32x32_sse2() local
150 qcoeff_ptr[rc] = (int)(abs_qcoeff ^ coeff_sign) - coeff_sign; in vpx_highbd_quantize_b_32x32_sse2()
152 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.c82 const int abs_qcoeff = (int)((tmp * quant_ptr[rc != 0]) >> 16); in vp9_highbd_quantize_fp_c() local
83 qcoeff_ptr[rc] = (tran_low_t)(abs_qcoeff ^ coeff_sign) - coeff_sign; in vp9_highbd_quantize_fp_c()
85 if (abs_qcoeff) eob = i; in vp9_highbd_quantize_fp_c()
143 int abs_qcoeff = 0; in vp9_highbd_quantize_fp_32x32_c() local
151 abs_qcoeff = (int)((tmp * quant_ptr[rc != 0]) >> 15); in vp9_highbd_quantize_fp_32x32_c()
152 qcoeff_ptr[rc] = (tran_low_t)((abs_qcoeff ^ coeff_sign) - coeff_sign); in vp9_highbd_quantize_fp_32x32_c()
156 if (abs_qcoeff) eob = i; in vp9_highbd_quantize_fp_32x32_c()
/external/libaom/libaom/aom_dsp/
Dquantize.c222 const int abs_qcoeff = (int)((tmp2 * quant_shift_ptr[rc != 0]) >> in highbd_quantize_b_adaptive_helper_c() local
224 qcoeff_ptr[rc] = (tran_low_t)((abs_qcoeff ^ coeff_sign) - coeff_sign); in highbd_quantize_b_adaptive_helper_c()
227 const tran_low_t abs_dqcoeff = (abs_qcoeff * dequant) >> log_scale; in highbd_quantize_b_adaptive_helper_c()
229 if (abs_qcoeff) { in highbd_quantize_b_adaptive_helper_c()
302 const int abs_qcoeff = (int)((tmp2 * quant_shift_ptr[rc != 0]) >> in highbd_quantize_b_helper_c() local
304 qcoeff_ptr[rc] = (tran_low_t)((abs_qcoeff ^ coeff_sign) - coeff_sign); in highbd_quantize_b_helper_c()
307 const tran_low_t abs_dqcoeff = (abs_qcoeff * dequant) >> log_scale; in highbd_quantize_b_helper_c()
309 if (abs_qcoeff) eob = idx_arr[i]; in highbd_quantize_b_helper_c()
/external/libaom/libaom/av1/encoder/
Dav1_quantize.c136 int abs_qcoeff = 0; in highbd_quantize_fp_helper_c() local
141 abs_qcoeff = in highbd_quantize_fp_helper_c()
143 qcoeff_ptr[rc] = (tran_low_t)((abs_qcoeff ^ coeff_sign) - coeff_sign); in highbd_quantize_fp_helper_c()
144 const tran_low_t abs_dqcoeff = (abs_qcoeff * dequant) >> log_scale; in highbd_quantize_fp_helper_c()
146 if (abs_qcoeff) eob = i; in highbd_quantize_fp_helper_c()
168 const int abs_qcoeff = (int)((tmp * quant) >> shift); in highbd_quantize_fp_helper_c() local
169 qcoeff_ptr[rc] = (tran_low_t)((abs_qcoeff ^ coeff_sign) - coeff_sign); in highbd_quantize_fp_helper_c()
170 const tran_low_t abs_dqcoeff = (abs_qcoeff * dequant) >> log_scale; in highbd_quantize_fp_helper_c()
171 if (abs_qcoeff) eob = i; in highbd_quantize_fp_helper_c()
514 const int abs_qcoeff = in highbd_quantize_dc() local
[all …]