Searched refs:vp9_ac_quant (Results 1 – 7 of 7) sorted by relevance
/external/libvpx/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/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_picklpf.c | 160 const int q = vp9_ac_quant(cm->base_qindex, 0, cm->bit_depth); in vp9_pick_filter_level()
|
D | vp9_quantize.c | 233 : vp9_ac_quant(q, 0, cm->bit_depth); in vp9_init_quantizer() 243 : vp9_ac_quant(q, cm->uv_ac_delta_q, cm->bit_depth); in vp9_init_quantizer()
|
D | vp9_ratectrl.c | 165 case VPX_BITS_8: return vp9_ac_quant(qindex, 0, bit_depth) / 4.0; in vp9_convert_qindex_to_q() 166 case VPX_BITS_10: return vp9_ac_quant(qindex, 0, bit_depth) / 16.0; in vp9_convert_qindex_to_q() 167 case VPX_BITS_12: 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/ |
D | vp9_decodeframe.c | 1093 cm->y_dequant[i][1] = vp9_ac_quant(qindex, 0, cm->bit_depth); in setup_segmentation_dequant() 1097 vp9_ac_quant(qindex, cm->uv_ac_delta_q, cm->bit_depth); in setup_segmentation_dequant() 1104 cm->y_dequant[0][1] = vp9_ac_quant(qindex, 0, cm->bit_depth); in setup_segmentation_dequant() 1108 vp9_ac_quant(qindex, cm->uv_ac_delta_q, cm->bit_depth); in setup_segmentation_dequant()
|