Home
last modified time | relevance | path

Searched refs:frame_over_shoot_limit (Results 1 – 6 of 6) sorted by relevance

/external/libvpx/libvpx/vp8/encoder/
Dratectrl.c1448 …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()
Dratectrl.h28 …ompute_frame_size_bounds(VP8_COMP *cpi, int *frame_under_shoot_limit, int *frame_over_shoot_limit);
Donyx_if.c3362 int frame_over_shoot_limit; in encode_frame_to_data_rate() local
3872 vp8_compute_frame_size_bounds(cpi, &frame_under_shoot_limit, &frame_over_shoot_limit); in encode_frame_to_data_rate()
4107 … vp8_compute_frame_size_bounds(cpi, &frame_under_shoot_limit, &frame_over_shoot_limit); in encode_frame_to_data_rate()
4125 if (frame_over_shoot_limit == 0) in encode_frame_to_data_rate()
4126 frame_over_shoot_limit = 1; in encode_frame_to_data_rate()
4132 (cpi->projected_frame_size > frame_over_shoot_limit)) in encode_frame_to_data_rate()
4134 …ver_size_percent = ((cpi->projected_frame_size - frame_over_shoot_limit) * 100) / frame_over_shoot… in encode_frame_to_data_rate()
4194 frame_over_shoot_limit, frame_under_shoot_limit, in encode_frame_to_data_rate()
/external/libvpx/libvpx/vp9/encoder/
Dvp9_ratectrl.h157 int *frame_over_shoot_limit);
Dvp9_ratectrl.c949 int *frame_over_shoot_limit) { in vp9_rc_compute_frame_size_bounds() argument
952 *frame_over_shoot_limit = INT_MAX; in vp9_rc_compute_frame_size_bounds()
958 *frame_over_shoot_limit = MIN(frame_target + tolerance + 200, in vp9_rc_compute_frame_size_bounds()
Dvp9_encoder.c1735 int frame_over_shoot_limit; in encode_with_recode_loop() local
1741 &frame_over_shoot_limit); in encode_with_recode_loop()
1780 if (frame_over_shoot_limit == 0) in encode_with_recode_loop()
1781 frame_over_shoot_limit = 1; in encode_with_recode_loop()
1802 rc->projected_frame_size <= frame_over_shoot_limit) || in encode_with_recode_loop()
1827 cpi, frame_over_shoot_limit, frame_under_shoot_limit, in encode_with_recode_loop()