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.c150 const int64_t q = vp9_dc_quant(qindex, 0, cpi->common.bit_depth); in vp9_compute_rd_mult_based_on_qindex()
186 case VPX_BITS_8: q = vp9_dc_quant(qindex, 0, VPX_BITS_8) / 4.0; break; in compute_rd_thresh_factor()
187 case VPX_BITS_10: q = vp9_dc_quant(qindex, 0, VPX_BITS_10) / 16.0; break; in compute_rd_thresh_factor()
188 case VPX_BITS_12: q = vp9_dc_quant(qindex, 0, VPX_BITS_12) / 64.0; break; in compute_rd_thresh_factor()
195 q = vp9_dc_quant(qindex, 0, VPX_BITS_8) / 4.0; in compute_rd_thresh_factor()
675 const int q = vp9_dc_quant(qindex, qdelta, bit_depth); in vp9_get_intra_cost_penalty()
Dvp9_quantize.c196 const int quant = vp9_dc_quant(q, 0, bit_depth); in get_qzbin_factor()
226 quant = i == 0 ? vp9_dc_quant(q, cm->y_dc_delta_q, cm->bit_depth) in vp9_init_quantizer()
236 quant = i == 0 ? vp9_dc_quant(q, cm->uv_dc_delta_q, cm->bit_depth) in vp9_init_quantizer()
Dvp9_encoder.c3221 (double)vp9_dc_quant(cm->base_qindex, 0, cm->bit_depth) /
/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.c164 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.c1108 vp9_dc_quant(qindex, cm->y_dc_delta_q, cm->bit_depth); in setup_segmentation_dequant()
1111 vp9_dc_quant(qindex, cm->uv_dc_delta_q, cm->bit_depth); in setup_segmentation_dequant()
1119 cm->y_dequant[0][0] = vp9_dc_quant(qindex, cm->y_dc_delta_q, cm->bit_depth); in setup_segmentation_dequant()
1122 vp9_dc_quant(qindex, cm->uv_dc_delta_q, cm->bit_depth); in setup_segmentation_dequant()