Searched refs:frame_over_shoot_limit (Results 1 – 6 of 6) sorted by relevance
/external/libvpx/libvpx/vp8/encoder/ |
D | ratectrl.c | 1461 …compute_frame_size_bounds(VP8_COMP *cpi, int *frame_under_shoot_limit, int *frame_over_shoot_limit) in vp8_compute_frame_size_bounds() argument 1470 *frame_over_shoot_limit = INT_MAX; in vp8_compute_frame_size_bounds() 1476 *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 * 9 / 8; in vp8_compute_frame_size_bounds() 1498 *frame_over_shoot_limit = cpi->this_frame_target * 12 / 8; in vp8_compute_frame_size_bounds() 1506 *frame_over_shoot_limit = cpi->this_frame_target * 10 / 8; in vp8_compute_frame_size_bounds() 1511 *frame_over_shoot_limit = cpi->this_frame_target * 11 / 8; in vp8_compute_frame_size_bounds() 1524 *frame_over_shoot_limit = cpi->this_frame_target * 11 / 8; in vp8_compute_frame_size_bounds() 1529 *frame_over_shoot_limit = cpi->this_frame_target * 11 / 8; in vp8_compute_frame_size_bounds() 1540 *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 | 3573 int frame_over_shoot_limit; in encode_frame_to_data_rate() local 4158 vp8_compute_frame_size_bounds(cpi, &frame_under_shoot_limit, &frame_over_shoot_limit); in encode_frame_to_data_rate() 4411 … vp8_compute_frame_size_bounds(cpi, &frame_under_shoot_limit, &frame_over_shoot_limit); in encode_frame_to_data_rate() 4429 if (frame_over_shoot_limit == 0) in encode_frame_to_data_rate() 4430 frame_over_shoot_limit = 1; in encode_frame_to_data_rate() 4436 (cpi->projected_frame_size > frame_over_shoot_limit)) in encode_frame_to_data_rate() 4438 …ver_size_percent = ((cpi->projected_frame_size - frame_over_shoot_limit) * 100) / frame_over_shoot… in encode_frame_to_data_rate() 4498 frame_over_shoot_limit, frame_under_shoot_limit, in encode_frame_to_data_rate()
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_ratectrl.h | 231 int *frame_over_shoot_limit);
|
D | vp9_ratectrl.c | 1207 int *frame_over_shoot_limit) { in vp9_rc_compute_frame_size_bounds() argument 1210 *frame_over_shoot_limit = INT_MAX; in vp9_rc_compute_frame_size_bounds() 1216 *frame_over_shoot_limit = VPXMIN(frame_target + tolerance + 200, in vp9_rc_compute_frame_size_bounds()
|
D | vp9_encoder.c | 3352 int frame_over_shoot_limit; local 3386 &frame_over_shoot_limit); 3438 if (frame_over_shoot_limit == 0) 3439 frame_over_shoot_limit = 1; 3470 rc->projected_frame_size <= frame_over_shoot_limit) || 3495 cpi, frame_over_shoot_limit, frame_under_shoot_limit,
|