Searched refs:qparam (Results 1 – 5 of 5) sorted by relevance
/external/libaom/av1/encoder/x86/ |
D | av1_highbd_quantize_sse4.c | 121 __m128i coeff[2], qcoeff[3], dequant[2], qparam[4], coeff_sign; in av1_highbd_quantize_fp_sse4_1() local 140 qparam[0] = _mm_set_epi32(round1, round1, round1, round0); in av1_highbd_quantize_fp_sse4_1() 141 qparam[1] = xx_set_64_from_32i(quant_ptr[1], quant_ptr[0]); in av1_highbd_quantize_fp_sse4_1() 142 qparam[2] = xx_set_64_from_32i(dequant_ptr[1], dequant_ptr[0]); in av1_highbd_quantize_fp_sse4_1() 143 qparam[3] = _mm_set_epi32(dequant_ptr[1], dequant_ptr[1], dequant_ptr[1], in av1_highbd_quantize_fp_sse4_1() 147 quantize_coeff_phase1(&coeff[0], qparam, shift, log_scale, qcoeff, dequant, in av1_highbd_quantize_fp_sse4_1() 151 qparam[0] = _mm_unpackhi_epi64(qparam[0], qparam[0]); in av1_highbd_quantize_fp_sse4_1() 152 qparam[1] = xx_set1_64_from_32i(quant_ptr[1]); in av1_highbd_quantize_fp_sse4_1() 153 qparam[2] = xx_set1_64_from_32i(dequant_ptr[1]); in av1_highbd_quantize_fp_sse4_1() 154 qparam[3] = _mm_set1_epi32(dequant_ptr[1]); in av1_highbd_quantize_fp_sse4_1() [all …]
|
/external/libaom/av1/encoder/ |
D | av1_quantize.c | 269 const SCAN_ORDER *sc, const QUANT_PARAM *qparam) { in av1_quantize_fp_facade() argument 270 const qm_val_t *qm_ptr = qparam->qmatrix; in av1_quantize_fp_facade() 271 const qm_val_t *iqm_ptr = qparam->iqmatrix; in av1_quantize_fp_facade() 276 sc->iscan, qm_ptr, iqm_ptr, qparam->log_scale); in av1_quantize_fp_facade() 278 switch (qparam->log_scale) { in av1_quantize_fp_facade() 305 const SCAN_ORDER *sc, const QUANT_PARAM *qparam) { in av1_quantize_b_facade() argument 306 const qm_val_t *qm_ptr = qparam->qmatrix; in av1_quantize_b_facade() 307 const qm_val_t *iqm_ptr = qparam->iqmatrix; in av1_quantize_b_facade() 309 if (qparam->use_quant_b_adapt) { in av1_quantize_b_facade() 316 sc->scan, sc->iscan, qm_ptr, iqm_ptr, qparam->log_scale); in av1_quantize_b_facade() [all …]
|
D | av1_quantize.h | 40 const QUANT_PARAM *qparam); 148 const SCAN_ORDER *sc, const QUANT_PARAM *qparam); 153 const SCAN_ORDER *sc, const QUANT_PARAM *qparam); 158 const SCAN_ORDER *sc, const QUANT_PARAM *qparam); 189 const QUANT_PARAM *qparam); 196 const QUANT_PARAM *qparam); 203 const QUANT_PARAM *qparam);
|
D | encodemb.c | 290 const QUANT_PARAM *qparam) { in av1_xform_quant() argument 292 av1_quant(x, plane, block, txfm_param, qparam); in av1_xform_quant() 309 const QUANT_PARAM *qparam) { in av1_quant() argument 319 if (qparam->xform_quant_idx != AV1_XFORM_QUANT_SKIP_QUANT) { in av1_quant() 323 quant_func_list[qparam->xform_quant_idx][txfm_param->is_hbd]( in av1_quant() 324 coeff, n_coeffs, p, qcoeff, dqcoeff, eob, scan_order, qparam); in av1_quant() 326 quant_func_list[qparam->xform_quant_idx]( in av1_quant() 327 coeff, n_coeffs, p, qcoeff, dqcoeff, eob, scan_order, qparam); in av1_quant() 335 if (qparam->use_optimize_b) { in av1_quant() 358 int use_quant_b_adapt, QUANT_PARAM *qparam) { in av1_setup_quant() argument [all …]
|
D | encodemb.h | 79 int use_quant_b_adapt, QUANT_PARAM *qparam); 82 TX_TYPE tx_type, QUANT_PARAM *qparam); 89 const QUANT_PARAM *qparam); 95 const QUANT_PARAM *qparam);
|