Searched refs:vp9_dc_quant (Results 1 – 6 of 6) sorted by relevance
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_rd.c | 153 const int64_t q = vp9_dc_quant(qindex, 0, cpi->common.bit_depth); in vp9_compute_rd_mult() 191 q = vp9_dc_quant(qindex, 0, VPX_BITS_8) / 4.0; in compute_rd_thresh_factor() 194 q = vp9_dc_quant(qindex, 0, VPX_BITS_10) / 16.0; in compute_rd_thresh_factor() 197 q = vp9_dc_quant(qindex, 0, VPX_BITS_12) / 64.0; in compute_rd_thresh_factor() 205 q = vp9_dc_quant(qindex, 0, VPX_BITS_8) / 4.0; in compute_rd_thresh_factor() 650 const int q = vp9_dc_quant(qindex, qdelta, bit_depth); in vp9_get_intra_cost_penalty()
|
D | vp9_quantize.c | 232 const int quant = vp9_dc_quant(q, 0, bit_depth); in get_qzbin_factor() 266 quant = i == 0 ? vp9_dc_quant(q, cm->y_dc_delta_q, cm->bit_depth) in vp9_init_quantizer() 276 quant = i == 0 ? vp9_dc_quant(q, cm->uv_dc_delta_q, cm->bit_depth) in vp9_init_quantizer()
|
D | vp9_encoder.c | 2988 (double)vp9_dc_quant(cm->base_qindex, 0, cm->bit_depth) / 4.0,
|
/external/libvpx/libvpx/vp9/common/ |
D | vp9_quant_common.h | 26 int16_t vp9_dc_quant(int qindex, int delta, vpx_bit_depth_t bit_depth);
|
D | vp9_quant_common.c | 229 int16_t vp9_dc_quant(int qindex, int delta, vpx_bit_depth_t bit_depth) { in vp9_dc_quant() function
|
/external/libvpx/libvpx/vp9/decoder/ |
D | vp9_decodeframe.c | 1158 cm->y_dequant[i][0] = vp9_dc_quant(qindex, cm->y_dc_delta_q, in setup_segmentation_dequant() 1161 cm->uv_dequant[i][0] = vp9_dc_quant(qindex, cm->uv_dc_delta_q, in setup_segmentation_dequant() 1170 cm->y_dequant[0][0] = vp9_dc_quant(qindex, cm->y_dc_delta_q, cm->bit_depth); in setup_segmentation_dequant() 1172 cm->uv_dequant[0][0] = vp9_dc_quant(qindex, cm->uv_dc_delta_q, in setup_segmentation_dequant()
|