Searched refs:vp9_ac_quant (Results 1 – 8 of 8) sorted by relevance
/external/libvpx/vp9/common/ |
D | vp9_quant_common.h | 27 int16_t vp9_ac_quant(int qindex, int delta, vpx_bit_depth_t bit_depth);
|
D | vp9_quant_common.c | 180 int16_t vp9_ac_quant(int qindex, int delta, vpx_bit_depth_t bit_depth) { in vp9_ac_quant() function
|
/external/libvpx/vp9/encoder/ |
D | vp9_aq_complexity.c | 43 const int base_quant = vp9_ac_quant(q_index, 0, bit_depth) / 4; in get_aq_c_strength()
|
D | vp9_quantize.c | 200 : vp9_ac_quant(q, 0, cm->bit_depth); in vp9_init_quantizer() 210 : vp9_ac_quant(q, cm->uv_ac_delta_q, cm->bit_depth); in vp9_init_quantizer()
|
D | vp9_picklpf.c | 171 const int q = vp9_ac_quant(cm->base_qindex, 0, cm->bit_depth); in vp9_pick_filter_level()
|
D | vp9_ratectrl.c | 163 case VPX_BITS_8: return vp9_ac_quant(qindex, 0, bit_depth) / 4.0; in vp9_convert_qindex_to_q() 164 case VPX_BITS_10: 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() 170 return vp9_ac_quant(qindex, 0, bit_depth) / 4.0; in vp9_convert_qindex_to_q()
|
D | vp9_encodeframe.c | 3261 vp9_ac_quant(cm->base_qindex, 0, cm->bit_depth) >> (x->e_mbd.bd - 8); in ml_predict_breakout() 3263 const int ac_q = vp9_ac_quant(qindex, 0, cm->bit_depth); in ml_predict_breakout()
|
/external/libvpx/vp9/decoder/ |
D | vp9_decodeframe.c | 1435 cm->y_dequant[i][1] = vp9_ac_quant(qindex, 0, cm->bit_depth); in setup_segmentation_dequant() 1439 vp9_ac_quant(qindex, cm->uv_ac_delta_q, cm->bit_depth); in setup_segmentation_dequant() 1446 cm->y_dequant[0][1] = vp9_ac_quant(qindex, 0, cm->bit_depth); in setup_segmentation_dequant() 1450 vp9_ac_quant(qindex, cm->uv_ac_delta_q, cm->bit_depth); in setup_segmentation_dequant()
|