Searched refs:qparam (Results 1 – 4 of 4) sorted by relevance
/external/libaom/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/libaom/av1/encoder/ |
D | av1_quantize.c | 220 const SCAN_ORDER *sc, const QUANT_PARAM *qparam) { in av1_quantize_fp_facade() argument 221 const qm_val_t *qm_ptr = qparam->qmatrix; in av1_quantize_fp_facade() 222 const qm_val_t *iqm_ptr = qparam->iqmatrix; in av1_quantize_fp_facade() 227 sc->iscan, qm_ptr, iqm_ptr, qparam->log_scale); in av1_quantize_fp_facade() 229 switch (qparam->log_scale) { in av1_quantize_fp_facade() 265 const SCAN_ORDER *sc, const QUANT_PARAM *qparam) { in av1_quantize_b_facade() argument 266 const qm_val_t *qm_ptr = qparam->qmatrix; in av1_quantize_b_facade() 267 const qm_val_t *iqm_ptr = qparam->iqmatrix; in av1_quantize_b_facade() 268 if (qparam->use_quant_b_adapt) { in av1_quantize_b_facade() 275 sc->scan, sc->iscan, qm_ptr, iqm_ptr, qparam->log_scale); in av1_quantize_b_facade() [all …]
|
D | av1_quantize.h | 41 const QUANT_PARAM *qparam); 115 const SCAN_ORDER *sc, const QUANT_PARAM *qparam); 120 const SCAN_ORDER *sc, const QUANT_PARAM *qparam); 125 const SCAN_ORDER *sc, const QUANT_PARAM *qparam); 132 const QUANT_PARAM *qparam); 139 const QUANT_PARAM *qparam); 146 const QUANT_PARAM *qparam);
|
D | encodemb.c | 160 QUANT_PARAM qparam; in av1_xform_quant() local 161 qparam.log_scale = av1_get_tx_scale(tx_size); in av1_xform_quant() 162 qparam.tx_size = tx_size; in av1_xform_quant() 163 qparam.qmatrix = qmatrix; in av1_xform_quant() 164 qparam.iqmatrix = iqmatrix; in av1_xform_quant() 165 qparam.use_quant_b_adapt = cm->use_quant_b_adapt; in av1_xform_quant() 182 coeff, n_coeffs, p, qcoeff, dqcoeff, eob, scan_order, &qparam); in av1_xform_quant()
|