Searched refs:vp9_convert_qindex_to_q (Results 1 – 7 of 7) sorted by relevance
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_ratectrl.c | 119 if (minqtarget <= vp9_convert_qindex_to_q(i, bit_depth)) return i; in get_minq_index() 130 const double maxq = vp9_convert_qindex_to_q(i, bit_depth); in init_minq_luts() 162 double vp9_convert_qindex_to_q(int qindex, vpx_bit_depth_t bit_depth) { in vp9_convert_qindex_to_q() function 181 if (vp9_convert_qindex_to_q(i, bit_depth) >= q_val) break; in vp9_convert_q_to_qindex() 190 const double q = vp9_convert_qindex_to_q(qindex, bit_depth); in vp9_rc_bits_per_mb() 416 rc->avg_q = vp9_convert_qindex_to_q(oxcf->worst_allowed_q, oxcf->bit_depth); in vp9_rc_init() 1003 double last_boosted_q = vp9_convert_qindex_to_q(qindex, cm->bit_depth); in rc_pick_q_and_bounds_one_pass_cbr() 1022 q_val = vp9_convert_qindex_to_q(active_best_quality, cm->bit_depth); in rc_pick_q_and_bounds_one_pass_cbr() 1135 double q = vp9_convert_qindex_to_q(qindex, cm->bit_depth); in rc_pick_q_and_bounds_one_pass_vbr() 1143 double last_boosted_q = vp9_convert_qindex_to_q(qindex, cm->bit_depth); in rc_pick_q_and_bounds_one_pass_vbr() [all …]
|
D | vp9_ratectrl.h | 211 double vp9_convert_qindex_to_q(int qindex, vpx_bit_depth_t bit_depth);
|
D | vp9_firstpass.c | 467 if (vp9_convert_qindex_to_q(i, bit_depth) >= FIRST_PASS_Q) break; in find_fp_qindex() 1884 const double lq = vp9_convert_qindex_to_q( in calc_frame_boost() 1923 const double lq = vp9_convert_qindex_to_q( in calc_kf_frame_boost() 2491 int int_max_q = (int)(vp9_convert_qindex_to_q(twopass->active_worst_quality, in define_gf_group() 2495 : (int)(vp9_convert_qindex_to_q(rc->last_boosted_qindex, in define_gf_group() 3187 rc->avg_q = vp9_convert_qindex_to_q(tmp_q, cm->bit_depth); in vp9_rc_get_second_pass_params()
|
D | vp9_temporal_filter.c | 1007 q = ((int)vp9_convert_qindex_to_q(cpi->rc.avg_frame_qindex[INTER_FRAME], in adjust_arnr_filter() 1010 q = ((int)vp9_convert_qindex_to_q(cpi->rc.avg_frame_qindex[KEY_FRAME], in adjust_arnr_filter()
|
D | vp9_aq_cyclicrefresh.c | 604 const double q = vp9_convert_qindex_to_q(cm->base_qindex, cm->bit_depth); in vp9_cyclic_refresh_setup()
|
D | vp9_rd.c | 148 const double q = vp9_convert_qindex_to_q(i, bit_depth); in init_me_luts_bd()
|
D | vp9_encoder.c | 3388 vp9_convert_qindex_to_q(cm->base_qindex, cm->bit_depth), 3391 vp9_convert_qindex_to_q(cpi->twopass.active_worst_quality, 3394 vp9_convert_qindex_to_q(cpi->oxcf.cq_level, cm->bit_depth), 4222 q_val_high = vp9_convert_qindex_to_q(q_high, cm->bit_depth); 4622 const int q = (int)(vp9_convert_qindex_to_q(twopass->active_worst_quality,
|