/external/libaom/libaom/av1/encoder/ |
D | ratectrl.c | 696 int height, int *bottom_index, in rc_pick_q_and_bounds_one_pass_cbr() argument 772 *bottom_index = active_best_quality; in rc_pick_q_and_bounds_one_pass_cbr() 782 *top_index = AOMMAX(*top_index, *bottom_index); in rc_pick_q_and_bounds_one_pass_cbr() 801 assert(*bottom_index <= rc->worst_quality && in rc_pick_q_and_bounds_one_pass_cbr() 802 *bottom_index >= rc->best_quality); in rc_pick_q_and_bounds_one_pass_cbr() 839 int height, int *bottom_index, in rc_pick_q_and_bounds_one_pass_vbr() argument 943 *bottom_index = active_best_quality; in rc_pick_q_and_bounds_one_pass_vbr() 960 *top_index = AOMMAX(*top_index, *bottom_index); in rc_pick_q_and_bounds_one_pass_vbr() 982 assert(*bottom_index <= rc->worst_quality && in rc_pick_q_and_bounds_one_pass_vbr() 983 *bottom_index >= rc->best_quality); in rc_pick_q_and_bounds_one_pass_vbr() [all …]
|
D | ratectrl.h | 220 int *bottom_index, int *top_index);
|
D | encoder.c | 3547 static void set_size_dependent_vars(AV1_COMP *cpi, int *q, int *bottom_index, in set_size_dependent_vars() argument 3556 *q = av1_rc_pick_q_and_bounds(cpi, cm->width, cm->height, bottom_index, in set_size_dependent_vars() 3824 int bottom_index, top_index; in calculate_next_superres_scale() local 3826 cpi, cpi->oxcf.width, cpi->oxcf.height, &bottom_index, &top_index); in calculate_next_superres_scale() 3847 int bottom_index, top_index; in calculate_next_superres_scale() local 3849 cpi, cpi->oxcf.width, cpi->oxcf.height, &bottom_index, &top_index); in calculate_next_superres_scale() 4184 int top_index, int bottom_index) { in get_regulated_q_overshoot() argument 4191 av1_rc_regulate_q(cpi, rc->this_frame_target, bottom_index, in get_regulated_q_overshoot() 4198 av1_rc_regulate_q(cpi, rc->this_frame_target, bottom_index, in get_regulated_q_overshoot() 4206 int top_index, int bottom_index) { in get_regulated_q_undershoot() argument [all …]
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_ratectrl.c | 986 int *bottom_index, in rc_pick_q_and_bounds_one_pass_cbr() argument 1060 *bottom_index = active_best_quality; in rc_pick_q_and_bounds_one_pass_cbr() 1077 assert(*bottom_index <= rc->worst_quality && in rc_pick_q_and_bounds_one_pass_cbr() 1078 *bottom_index >= rc->best_quality); in rc_pick_q_and_bounds_one_pass_cbr() 1120 int *bottom_index, in rc_pick_q_and_bounds_one_pass_vbr() argument 1235 *bottom_index = active_best_quality; in rc_pick_q_and_bounds_one_pass_vbr() 1254 *top_index = (*top_index > *bottom_index) ? *top_index : *bottom_index; in rc_pick_q_and_bounds_one_pass_vbr() 1276 assert(*bottom_index <= rc->worst_quality && in rc_pick_q_and_bounds_one_pass_vbr() 1277 *bottom_index >= rc->best_quality); in rc_pick_q_and_bounds_one_pass_vbr() 1299 static void pick_kf_q_bound_two_pass(const VP9_COMP *cpi, int *bottom_index, in pick_kf_q_bound_two_pass() argument [all …]
|
D | vp9_ratectrl.h | 275 int vp9_rc_pick_q_and_bounds(const struct VP9_COMP *cpi, int *bottom_index,
|
D | vp9_encoder.c | 3459 static void set_size_dependent_vars(VP9_COMP *cpi, int *q, int *bottom_index, argument 3467 *q = vp9_rc_pick_q_and_bounds(cpi, bottom_index, top_index); 3679 int q = 0, bottom_index = 0, top_index = 0; local 3852 set_size_dependent_vars(cpi, &q, &bottom_index, &top_index); 3998 int bottom_index, top_index; local 4029 set_size_dependent_vars(cpi, &q, &bottom_index, &top_index); 4034 qrange_adj = VPXMAX(1, (top_index - bottom_index) / 2); 4036 bottom_index = 4037 VPXMAX(bottom_index - qrange_adj / 2, oxcf->best_allowed_q); 4051 q_low = bottom_index; [all …]
|
/external/libvpx/libvpx/vp8/encoder/ |
D | onyx_if.c | 3223 int bottom_index; in encode_frame_to_data_rate() local 3768 bottom_index = cpi->active_best_quality; in encode_frame_to_data_rate() 3990 bottom_index = cpi->active_best_quality; in encode_frame_to_data_rate() 4075 bottom_index)) { in encode_frame_to_data_rate()
|