Home
last modified time | relevance | path

Searched refs:vp9_ac_quant (Results 1 – 7 of 7) sorted by relevance

/external/libvpx/libvpx/vp9/common/
Dvp9_quant_common.h27 int16_t vp9_ac_quant(int qindex, int delta, vpx_bit_depth_t bit_depth);
Dvp9_quant_common.c248 int16_t vp9_ac_quant(int qindex, int delta, vpx_bit_depth_t bit_depth) { in vp9_ac_quant() function
/external/libvpx/libvpx/vp9/encoder/
Dvp9_aq_complexity.c43 const int base_quant = vp9_ac_quant(q_index, 0, bit_depth) / 4; in get_aq_c_strength()
Dvp9_picklpf.c164 const int q = vp9_ac_quant(cm->base_qindex, 0, cm->bit_depth); in vp9_pick_filter_level()
Dvp9_quantize.c267 : vp9_ac_quant(q, 0, cm->bit_depth); in vp9_init_quantizer()
277 : vp9_ac_quant(q, cm->uv_ac_delta_q, cm->bit_depth); in vp9_init_quantizer()
Dvp9_ratectrl.c163 return vp9_ac_quant(qindex, 0, bit_depth) / 4.0; in vp9_convert_qindex_to_q()
165 return vp9_ac_quant(qindex, 0, bit_depth) / 16.0; in vp9_convert_qindex_to_q()
167 return vp9_ac_quant(qindex, 0, bit_depth) / 64.0; in vp9_convert_qindex_to_q()
173 return vp9_ac_quant(qindex, 0, bit_depth) / 4.0; in vp9_convert_qindex_to_q()
/external/libvpx/libvpx/vp9/decoder/
Dvp9_decodeframe.c1160 cm->y_dequant[i][1] = vp9_ac_quant(qindex, 0, cm->bit_depth); in setup_segmentation_dequant()
1163 cm->uv_dequant[i][1] = vp9_ac_quant(qindex, cm->uv_ac_delta_q, in setup_segmentation_dequant()
1171 cm->y_dequant[0][1] = vp9_ac_quant(qindex, 0, cm->bit_depth); in setup_segmentation_dequant()
1174 cm->uv_dequant[0][1] = vp9_ac_quant(qindex, cm->uv_ac_delta_q, in setup_segmentation_dequant()