Searched refs:frame_over_shoot_limit (Results 1 – 6 of 6) sorted by relevance
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/ |
D | ratectrl.c | 1448 …compute_frame_size_bounds(VP8_COMP *cpi, int *frame_under_shoot_limit, int *frame_over_shoot_limit) in vp8_compute_frame_size_bounds() argument 1457 *frame_over_shoot_limit = INT_MAX; in vp8_compute_frame_size_bounds() 1463 *frame_over_shoot_limit = cpi->this_frame_target * 9 / 8; in vp8_compute_frame_size_bounds() 1472 *frame_over_shoot_limit = cpi->this_frame_target * 9 / 8; in vp8_compute_frame_size_bounds() 1485 *frame_over_shoot_limit = cpi->this_frame_target * 12 / 8; in vp8_compute_frame_size_bounds() 1493 *frame_over_shoot_limit = cpi->this_frame_target * 10 / 8; in vp8_compute_frame_size_bounds() 1498 *frame_over_shoot_limit = cpi->this_frame_target * 11 / 8; in vp8_compute_frame_size_bounds() 1511 *frame_over_shoot_limit = cpi->this_frame_target * 11 / 8; in vp8_compute_frame_size_bounds() 1516 *frame_over_shoot_limit = cpi->this_frame_target * 11 / 8; in vp8_compute_frame_size_bounds() 1527 *frame_over_shoot_limit += 200; in vp8_compute_frame_size_bounds()
|
D | ratectrl.h | 28 …ompute_frame_size_bounds(VP8_COMP *cpi, int *frame_under_shoot_limit, int *frame_over_shoot_limit);
|
D | onyx_if.c | 3323 int frame_over_shoot_limit; in encode_frame_to_data_rate() local 3830 vp8_compute_frame_size_bounds(cpi, &frame_under_shoot_limit, &frame_over_shoot_limit); in encode_frame_to_data_rate() 4062 … vp8_compute_frame_size_bounds(cpi, &frame_under_shoot_limit, &frame_over_shoot_limit); in encode_frame_to_data_rate() 4080 if (frame_over_shoot_limit == 0) in encode_frame_to_data_rate() 4081 frame_over_shoot_limit = 1; in encode_frame_to_data_rate() 4087 (cpi->projected_frame_size > frame_over_shoot_limit)) in encode_frame_to_data_rate() 4089 …ver_size_percent = ((cpi->projected_frame_size - frame_over_shoot_limit) * 100) / frame_over_shoot… in encode_frame_to_data_rate() 4149 frame_over_shoot_limit, frame_under_shoot_limit, in encode_frame_to_data_rate()
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/ |
D | vp9_ratectrl.h | 142 int *frame_over_shoot_limit);
|
D | vp9_ratectrl.c | 999 int *frame_over_shoot_limit) { in vp9_rc_compute_frame_size_bounds() argument 1003 *frame_over_shoot_limit = INT_MAX; in vp9_rc_compute_frame_size_bounds() 1008 *frame_over_shoot_limit = this_frame_target + recode_tolerance; in vp9_rc_compute_frame_size_bounds() 1013 *frame_over_shoot_limit += 200; in vp9_rc_compute_frame_size_bounds() 1019 if (*frame_over_shoot_limit > cpi->rc.max_frame_bandwidth) { in vp9_rc_compute_frame_size_bounds() 1020 *frame_over_shoot_limit = cpi->rc.max_frame_bandwidth; in vp9_rc_compute_frame_size_bounds()
|
D | vp9_onyx_if.c | 2289 int frame_over_shoot_limit; local 2295 &frame_over_shoot_limit); 2347 if (frame_over_shoot_limit == 0) 2348 frame_over_shoot_limit = 1; 2369 rc->projected_frame_size <= frame_over_shoot_limit) || 2394 cpi, frame_over_shoot_limit, frame_under_shoot_limit,
|