HomeSort by relevance Sort by last modified time
    Searched refs:qparam (Results 1 - 4 of 4) sorted by null

  /external/libaom/libaom/av1/encoder/x86/
av1_highbd_quantize_sse4.c 121 __m128i coeff[2], qcoeff[3], dequant[2], qparam[4], coeff_sign; local
140 qparam[0] = _mm_set_epi32(round1, round1, round1, round0);
141 qparam[1] = xx_set_64_from_32i(quant_ptr[1], quant_ptr[0]);
142 qparam[2] = xx_set_64_from_32i(dequant_ptr[1], dequant_ptr[0]);
143 qparam[3] = _mm_set_epi32(dequant_ptr[1], dequant_ptr[1], dequant_ptr[1],
147 quantize_coeff_phase1(&coeff[0], qparam, shift, log_scale, qcoeff, dequant,
151 qparam[0] = _mm_unpackhi_epi64(qparam[0], qparam[0]);
152 qparam[1] = xx_set1_64_from_32i(quant_ptr[1])
    [all...]
  /external/libaom/libaom/av1/encoder/
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);
av1_quantize.c 220 const SCAN_ORDER *sc, const QUANT_PARAM *qparam) {
221 const qm_val_t *qm_ptr = qparam->qmatrix;
222 const qm_val_t *iqm_ptr = qparam->iqmatrix;
227 sc->iscan, qm_ptr, iqm_ptr, qparam->log_scale);
229 switch (qparam->log_scale) {
265 const SCAN_ORDER *sc, const QUANT_PARAM *qparam) {
266 const qm_val_t *qm_ptr = qparam->qmatrix;
267 const qm_val_t *iqm_ptr = qparam->iqmatrix;
268 if (qparam->use_quant_b_adapt) {
275 sc->scan, sc->iscan, qm_ptr, iqm_ptr, qparam->log_scale)
    [all...]
encodemb.c 160 QUANT_PARAM qparam; local
161 qparam.log_scale = av1_get_tx_scale(tx_size);
162 qparam.tx_size = tx_size;
163 qparam.qmatrix = qmatrix;
164 qparam.iqmatrix = iqmatrix;
165 qparam.use_quant_b_adapt = cm->use_quant_b_adapt;
182 coeff, n_coeffs, p, qcoeff, dqcoeff, eob, scan_order, &qparam);

Completed in 127 milliseconds