Home
last modified time | relevance | path

Searched refs:vp9_dc_quant (Results 1 – 6 of 6) sorted by relevance

/external/libvpx/libvpx/vp9/encoder/
Dvp9_rd.c153 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()
Dvp9_quantize.c232 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()
Dvp9_encoder.c2988 (double)vp9_dc_quant(cm->base_qindex, 0, cm->bit_depth) / 4.0,
/external/libvpx/libvpx/vp9/common/
Dvp9_quant_common.h26 int16_t vp9_dc_quant(int qindex, int delta, vpx_bit_depth_t bit_depth);
Dvp9_quant_common.c229 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/
Dvp9_decodeframe.c1158 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()