Home
last modified time | relevance | path

Searched refs:base_qindex (Results 1 – 25 of 29) sorted by relevance

12

/external/libvpx/libvpx/vp9/encoder/
Dvp9_aq_complexity.c43 const int aq_strength = get_aq_c_strength(cm->base_qindex); in vp9_setup_in_frame_q_adj()
72 vp9_compute_qdelta_by_rate(&cpi->rc, cm->frame_type, cm->base_qindex, in vp9_setup_in_frame_q_adj()
79 if ((cm->base_qindex != 0) && ((cm->base_qindex + qindex_delta) == 0)) { in vp9_setup_in_frame_q_adj()
80 qindex_delta = -cm->base_qindex + 1; in vp9_setup_in_frame_q_adj()
82 if ((cm->base_qindex + qindex_delta) > 0) { in vp9_setup_in_frame_q_adj()
118 const int aq_strength = get_aq_c_strength(cm->base_qindex); in vp9_select_in_frame_q_segment()
Dvp9_aq_cyclicrefresh.c203 const double q = vp9_convert_qindex_to_q(cm->base_qindex); in vp9_cyclic_refresh_setup()
244 cm->base_qindex, in vp9_cyclic_refresh_setup()
248 if (-qindex_delta > cr->max_qdelta_perc * cm->base_qindex / 100) in vp9_cyclic_refresh_setup()
249 qindex_delta = -cr->max_qdelta_perc * cm->base_qindex / 100; in vp9_cyclic_refresh_setup()
252 qindex2 = clamp(cm->base_qindex + cm->y_dc_delta_q + qindex_delta, 0, MAXQ); in vp9_cyclic_refresh_setup()
Dvp9_aq_variance.c78 const double base_q = vp9_convert_qindex_to_q(cm->base_qindex); in vp9_vaq_frame_setup()
79 const int base_rdmult = vp9_compute_rd_mult(cpi, cm->base_qindex + in vp9_vaq_frame_setup()
106 segment_rdmult = vp9_compute_rd_mult(cpi, cm->base_qindex + qindex_delta + in vp9_vaq_frame_setup()
Dvp9_picklpf.c152 const int q = vp9_ac_quant(cm->base_qindex, 0); in vp9_pick_filter_level()
Dvp9_quantize.c344 const int qindex = vp9_get_qindex(&cm->seg, segment_id, cm->base_qindex); in vp9_init_plane_quantizers()
408 cm->base_qindex = q; in vp9_set_quantizer()
Dvp9_rd.c151 clamp(vp9_get_qindex(&cm->seg, segment_id, cm->base_qindex) + in set_block_thresholds()
188 rd->RDMULT = vp9_compute_rd_mult(cpi, cm->base_qindex + cm->y_dc_delta_q); in vp9_initialize_rd_consts()
Dvp9_ratectrl.c332 cm->base_qindex, cm->MBs, in vp9_rc_update_rate_correction_factors()
1019 const int qindex = cm->base_qindex; in vp9_rc_postencode_update()
Dvp9_encoder.c1663 cpi->rc.total_actual_bits, cm->base_qindex,
1664 vp9_convert_qindex_to_q(cm->base_qindex),
1665 (double)vp9_dc_quant(cm->base_qindex, 0) / 4.0,
2942 return cpi->common.base_qindex; in vp9_get_quantizer()
Dvp9_encodeframe.c339 int64_t threshold = threshold_multiplier * cpi->common.base_qindex; in set_vt_partitioning()
2088 cm->base_qindex < qindex_split_threshold_lookup[bsize]) { in rd_pick_partition()
2174 cm->base_qindex > qindex_skip_threshold_lookup[bsize]) { in rd_pick_partition()
3283 xd->lossless = cm->base_qindex == 0 && in encode_frame_internal()
3302 vp9_initialize_me_consts(cpi, cm->base_qindex); in encode_frame_internal()
Dvp9_pickmode.c384 int intra_cost_penalty = 20 * vp9_dc_quant(cm->base_qindex, cm->y_dc_delta_q); in vp9_pick_inter_mode()
/external/libvpx/libvpx/vp8/encoder/
Dpicklpf.c99 static int get_min_filter_level(VP8_COMP *cpi, int base_qindex) in get_min_filter_level() argument
108 if (base_qindex <= 6) in get_min_filter_level()
110 else if (base_qindex <= 16) in get_min_filter_level()
113 min_filter_level = (base_qindex / 8); in get_min_filter_level()
120 static int get_max_filter_level(VP8_COMP *cpi, int base_qindex) in get_max_filter_level() argument
128 (void)base_qindex; in get_max_filter_level()
142 int min_filter_level = get_min_filter_level(cpi, cm->base_qindex); in vp8cx_pick_filter_level_fast()
143 int max_filter_level = get_max_filter_level(cpi, cm->base_qindex); in vp8cx_pick_filter_level_fast()
272 int min_filter_level = get_min_filter_level(cpi, cm->base_qindex); in vp8cx_pick_filter_level()
273 int max_filter_level = get_max_filter_level(cpi, cm->base_qindex); in vp8cx_pick_filter_level()
Dquantize.c626 …QIndex = cpi->common.base_qindex + xd->segment_feature_data[MB_LVL_ALT_Q][xd->mode_info_context->m… in vp8cx_mb_init_quantizer()
632 QIndex = cpi->common.base_qindex; in vp8cx_mb_init_quantizer()
784 cm->base_qindex = Q; in vp8_set_quantizer()
Donyx_if.c4528 cpi->last_q[cm->frame_type] = cm->base_qindex; in encode_frame_to_data_rate()
4537 cpi->avg_frame_qindex = (2 + 3 * cpi->avg_frame_qindex + cm->base_qindex) >> 2; in encode_frame_to_data_rate()
4659 cpi->last_skip_probs_q[2] = cm->base_qindex; in encode_frame_to_data_rate()
4664 cpi->last_skip_probs_q[1] = cm->base_qindex; in encode_frame_to_data_rate()
4669 cpi->last_skip_probs_q[0] = cm->base_qindex; in encode_frame_to_data_rate()
4672 cpi->base_skip_false_prob[cm->base_qindex] = cpi->prob_skip_false; in encode_frame_to_data_rate()
4693 cpi->total_actual_bits, cm->base_qindex, in encode_frame_to_data_rate()
4714 cpi->total_actual_bits, cm->base_qindex, in encode_frame_to_data_rate()
5396 if (cpi->common.frame_type != 0 && cpi->common.base_qindex == cpi->oxcf.worst_allowed_q) in vp8_get_compressed_data()
5408 …ize:%5d\n", cpi->common.current_video_frame, *frame_flags, cpi->common.base_qindex, cpi->prob_skip… in vp8_get_compressed_data()
[all …]
Dratectrl.c312 cpi->common.filter_level = cpi->common.base_qindex * 3 / 8 ; in vp8_setup_key_frame()
1103 int Q = cpi->common.base_qindex; in vp8_update_rate_correction_factors()
Dencodeframe.c783 vp8_dc_quant(cm->base_qindex, cm->y1dc_delta_q)); in vp8_encode_frame()
785 vp8cx_initialize_me_consts(cpi, cm->base_qindex); in vp8_encode_frame()
Dbitstream.c1478 vp8_write_literal(bc, pc->base_qindex, 7); in vp8_pack_bitstream()
/external/libvpx/libvpx/vp9/common/
Dvp9_quant_common.c95 int base_qindex) { in vp9_get_qindex() argument
99 data : base_qindex + data; in vp9_get_qindex()
102 return base_qindex; in vp9_get_qindex()
Dvp9_quant_common.h29 int base_qindex);
Dvp9_debugmodes.c19 cm->show_frame, cm->base_qindex); in log_frame_info()
Dvp9_onyxc_int.h130 int base_qindex; member
/external/libvpx/libvpx/vp8/common/
Dpostproc.c740 oci->postproc_state.last_base_qindex = oci->base_qindex; in vp8_post_proc_frame()
774 oci->base_qindex - oci->postproc_state.last_base_qindex >= 20) in vp8_post_proc_frame()
795 …->postproc_state.last_base_qindex = (3*oci->postproc_state.last_base_qindex + oci->base_qindex)>>2; in vp8_post_proc_frame()
803 oci->postproc_state.last_base_qindex = oci->base_qindex; in vp8_post_proc_frame()
809 oci->postproc_state.last_base_qindex = oci->base_qindex; in vp8_post_proc_frame()
814 oci->postproc_state.last_base_qindex = oci->base_qindex; in vp8_post_proc_frame()
843 oci->base_qindex, in vp8_post_proc_frame()
Donyxc_int.h113 int base_qindex; member
Dmfqe.c287 int qcurr = cm->base_qindex; in vp8_multiframe_quality_enhance()
/external/libvpx/libvpx/vp8/decoder/
Ddecodeframe.c75 QIndex = pc->base_qindex + xd->segment_feature_data[MB_LVL_ALT_Q][mbmi->segment_id]; in vp8_mb_init_dequantizer()
80 QIndex = pc->base_qindex; in vp8_mb_init_dequantizer()
1202 pc->base_qindex = Q; in vp8_decode_frame()
1301 pc->base_qindex); in vp8_decode_frame()
/external/libvpx/libvpx/vp9/decoder/
Dvp9_decodeframe.c354 cm->base_qindex)); in decode_block()
586 cm->base_qindex = vp9_rb_read_literal(rb, QINDEX_BITS); in setup_quantization()
593 xd->lossless = cm->base_qindex == 0 && in setup_quantization()
1419 setup_plane_dequants(cm, xd, cm->base_qindex); in vp9_decode_frame()

12