Home
last modified time | relevance | path

Searched refs:dqv (Results 1 – 4 of 4) sorted by relevance

/external/libvpx/libvpx/vp9/decoder/
Dvp9_detokenize.c92 int16_t dqv = dq[0]; in decode_coefs() local
129 dqv = dq[1]; in decode_coefs()
176 v = (int)(((int64_t)val * dqv) >> dq_shift); in decode_coefs()
178 v = (val * dqv) >> dq_shift; in decode_coefs()
183 v = ((3 + read_bool(r, p[2], &value, &count, &range)) * dqv) >> in decode_coefs()
187 v = (2 * dqv) >> dq_shift; in decode_coefs()
193 v = dqv >> dq_shift; in decode_coefs()
212 dqv = dq[1]; in decode_coefs()
/external/libaom/libaom/av1/decoder/
Ddecodetxb.c55 int dqv = dequant[!!coeff_idx]; in get_dqv() local
57 dqv = in get_dqv()
58 ((iqmatrix[coeff_idx] * dqv) + (1 << (AOM_QM_BITS - 1))) >> AOM_QM_BITS; in get_dqv()
59 return dqv; in get_dqv()
/external/libaom/libaom/av1/encoder/
Dencodetxb.c111 int dqv, int shift, in qcoeff_to_dqcoeff() argument
115 dqv = in qcoeff_to_dqcoeff()
116 ((iqmatrix[coeff_idx] * dqv) + (1 << (AOM_QM_BITS - 1))) >> AOM_QM_BITS; in qcoeff_to_dqcoeff()
117 return sign * ((abs(qc) * dqv) >> shift); in qcoeff_to_dqcoeff()
388 const int dqv = txb_info->dequant[coeff_idx != 0]; local
395 const tran_low_t dqc = qcoeff_to_dqcoeff(qc, coeff_idx, dqv, txb_info->shift,
401 qcoeff_to_dqcoeff(0, coeff_idx, dqv, txb_info->shift, txb_info->iqmatrix);
417 stats->low_dqc = qcoeff_to_dqcoeff(stats->low_qc, coeff_idx, dqv,
469 const int dqv = txb_info->dequant[coeff_idx != 0]; local
471 qc, coeff_idx, dqv, txb_info->shift, txb_info->iqmatrix);
[all …]
/external/libvpx/libvpx/vp9/encoder/
Dvp9_encodemb.c143 const int dqv = dequant_ptr[rc != 0]; in vp9_optimize_b() local
174 (xd->cur_buf->flags & YV12_FLAG_HIGHBITDEPTH) ? dqv >> (xd->bd - 8) in vp9_optimize_b()
177 dqv; in vp9_optimize_b()
180 assert(dqv > 0); // We aren't right shifting a negative number above. in vp9_optimize_b()
252 dqc1 = RIGHT_SHIFT_POSSIBLY_NEGATIVE(x1 * dqv, shift); in vp9_optimize_b()