Home
last modified time | relevance | path

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

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
Dvp9_quant_common.h27 int16_t vp9_dc_quant(int qindex, int delta);
Dvp9_quant_common.c124 int16_t vp9_dc_quant(int qindex, int delta) { in vp9_dc_quant() function
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
Dvp9_quantize.c160 const int qzbin_factor = q == 0 ? 64 : (vp9_dc_quant(q, 0) < 148 ? 84 : 80); in vp9_init_quantizer()
165 quant = i == 0 ? vp9_dc_quant(q, cm->y_dc_delta_q) in vp9_init_quantizer()
173 quant = i == 0 ? vp9_dc_quant(q, cm->uv_dc_delta_q) in vp9_init_quantizer()
183 quant = i == 0 ? vp9_dc_quant(q, cm->a_dc_delta_q) in vp9_init_quantizer()
Dvp9_pickmode.c226 int intra_cost_penalty = 20 * vp9_dc_quant(cm->base_qindex, cm->y_dc_delta_q); in vp9_pick_inter_mode()
Dvp9_rdopt.c222 const int q = vp9_dc_quant(qindex, 0); in vp9_compute_rd_mult()
236 const int q = (int)(pow(vp9_dc_quant(qindex, 0) / 4.0, RD_THRESH_POW) * 5.12); in compute_rd_thresh_factor()
3163 int intra_cost_penalty = 20 * vp9_dc_quant(cm->base_qindex, cm->y_dc_delta_q); in vp9_rd_pick_inter_mode_sb()
3790 int intra_cost_penalty = 20 * vp9_dc_quant(cm->base_qindex, cm->y_dc_delta_q); in vp9_rd_pick_inter_mode_sub8x8()
Dvp9_onyx_if.c2204 (double)vp9_dc_quant(cm->base_qindex, 0) / 4.0,
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/decoder/
Dvp9_decodeframe.c1207 cm->y_dequant[q][0] = vp9_dc_quant(q, cm->y_dc_delta_q); in vp9_init_dequantizer()
1210 cm->uv_dequant[q][0] = vp9_dc_quant(q, cm->uv_dc_delta_q); in vp9_init_dequantizer()