Searched refs:this_frame_target (Results 1 – 7 of 7) sorted by relevance
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/ |
D | ratectrl.c | 415 cpi->this_frame_target = (int)target; in calc_iframe_target_size() 635 cpi->this_frame_target = cpi->per_frame_bandwidth; in calc_pframe_target_size() 647 cpi->this_frame_target = cpi->per_frame_bandwidth; in calc_pframe_target_size() 670 cpi->this_frame_target = cpi->per_frame_bandwidth - Adjustment; in calc_pframe_target_size() 672 if (cpi->this_frame_target < min_frame_target) in calc_pframe_target_size() 673 cpi->this_frame_target = min_frame_target; in calc_pframe_target_size() 676 cpi->this_frame_target = cpi->per_frame_bandwidth; in calc_pframe_target_size() 681 if ((cpi->gf_overspend_bits > 0) && (cpi->this_frame_target > min_frame_target)) in calc_pframe_target_size() 685 if (Adjustment > (cpi->this_frame_target - min_frame_target)) in calc_pframe_target_size() 686 Adjustment = (cpi->this_frame_target - min_frame_target); in calc_pframe_target_size() [all …]
|
D | onyx_if.c | 3070 ((cpi->this_frame_target * 7) >> 3))) in recode_loop_test() 3803 Q = vp8_regulate_q(cpi, cpi->this_frame_target); in encode_frame_to_data_rate() 3982 Q = vp8_regulate_q(cpi, cpi->this_frame_target); in encode_frame_to_data_rate() 4060 Q = vp8_regulate_q(cpi, cpi->this_frame_target); in encode_frame_to_data_rate() 4160 if (cpi->projected_frame_size > cpi->this_frame_target) in encode_frame_to_data_rate() 4201 Q = vp8_regulate_q(cpi, cpi->this_frame_target); in encode_frame_to_data_rate() 4208 Q = vp8_regulate_q(cpi, cpi->this_frame_target); in encode_frame_to_data_rate() 4253 Q = vp8_regulate_q(cpi, cpi->this_frame_target); in encode_frame_to_data_rate() 4271 Q = vp8_regulate_q(cpi, cpi->this_frame_target); in encode_frame_to_data_rate() 4549 cpi->rolling_target_bits = ((cpi->rolling_target_bits * 3) + cpi->this_frame_target + 2) / 4; in encode_frame_to_data_rate() [all …]
|
D | onyx_int.h | 369 int this_frame_target; member
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/ |
D | vp9_ratectrl.h | 27 int this_frame_target; member 140 int this_frame_target,
|
D | vp9_ratectrl.c | 583 q = vp9_rc_regulate_q(cpi, rc->this_frame_target, in rc_pick_q_and_bounds_one_pass_cbr() 587 if (cpi->rc.this_frame_target >= cpi->rc.max_frame_bandwidth) in rc_pick_q_and_bounds_one_pass_cbr() 749 q = vp9_rc_regulate_q(cpi, rc->this_frame_target, in rc_pick_q_and_bounds_one_pass_vbr() 753 if (cpi->rc.this_frame_target >= cpi->rc.max_frame_bandwidth) in rc_pick_q_and_bounds_one_pass_vbr() 932 q = vp9_rc_regulate_q(cpi, rc->this_frame_target, in rc_pick_q_and_bounds_two_pass() 936 if (rc->this_frame_target >= rc->max_frame_bandwidth) in rc_pick_q_and_bounds_two_pass() 997 int this_frame_target, in vp9_rc_compute_frame_size_bounds() argument 1006 (cpi->sf.recode_tolerance * this_frame_target) / 100; in vp9_rc_compute_frame_size_bounds() 1008 *frame_over_shoot_limit = this_frame_target + recode_tolerance; in vp9_rc_compute_frame_size_bounds() 1009 *frame_under_shoot_limit = this_frame_target - recode_tolerance; in vp9_rc_compute_frame_size_bounds() [all …]
|
D | vp9_onyx_if.c | 2033 rc->projected_frame_size < ((rc->this_frame_target * 7) >> 3)) { in recode_loop_test() 2196 cpi->common.current_video_frame, cpi->rc.this_frame_target, 2199 (cpi->rc.projected_frame_size - cpi->rc.this_frame_target), 2293 vp9_rc_compute_frame_size_bounds(cpi, rc->this_frame_target, 2405 if (rc->projected_frame_size > rc->this_frame_target) { 2422 q = vp9_rc_regulate_q(cpi, rc->this_frame_target, 2427 q = vp9_rc_regulate_q(cpi, rc->this_frame_target, 2443 q = vp9_rc_regulate_q(cpi, rc->this_frame_target, 2456 q = vp9_rc_regulate_q(cpi, rc->this_frame_target,
|
D | vp9_firstpass.c | 2323 target = vp9_rc_clamp_iframe_target_size(cpi, rc->this_frame_target); in vp9_rc_get_second_pass_params() 2325 target = vp9_rc_clamp_pframe_target_size(cpi, rc->this_frame_target); in vp9_rc_get_second_pass_params() 2341 cpi->twopass.kf_group_bits += cpi->rc.this_frame_target - bits_used; in vp9_twopass_postencode_update()
|