Home
last modified time | relevance | path

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

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
Dratectrl.c1448 void vp8_compute_frame_size_bounds(VP8_COMP *cpi, int *frame_under_shoot_limit, int *frame_over_sho… in vp8_compute_frame_size_bounds() argument
1456 *frame_under_shoot_limit = 0; in vp8_compute_frame_size_bounds()
1464 *frame_under_shoot_limit = cpi->this_frame_target * 7 / 8; in vp8_compute_frame_size_bounds()
1473 *frame_under_shoot_limit = cpi->this_frame_target * 7 / 8; in vp8_compute_frame_size_bounds()
1486 *frame_under_shoot_limit = cpi->this_frame_target * 6 / 8; in vp8_compute_frame_size_bounds()
1494 *frame_under_shoot_limit = cpi->this_frame_target * 4 / 8; in vp8_compute_frame_size_bounds()
1499 *frame_under_shoot_limit = cpi->this_frame_target * 5 / 8; in vp8_compute_frame_size_bounds()
1512 *frame_under_shoot_limit = cpi->this_frame_target * 2 / 8; in vp8_compute_frame_size_bounds()
1517 *frame_under_shoot_limit = cpi->this_frame_target * 5 / 8; in vp8_compute_frame_size_bounds()
1528 *frame_under_shoot_limit -= 200; in vp8_compute_frame_size_bounds()
[all …]
Dratectrl.h28 extern void vp8_compute_frame_size_bounds(VP8_COMP *cpi, int *frame_under_shoot_limit, int *frame_o…
Donyx_if.c3324 int frame_under_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()
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/
Dvp9_ratectrl.h141 int *frame_under_shoot_limit,
Dvp9_ratectrl.c998 int *frame_under_shoot_limit, in vp9_rc_compute_frame_size_bounds() argument
1002 *frame_under_shoot_limit = 0; in vp9_rc_compute_frame_size_bounds()
1009 *frame_under_shoot_limit = this_frame_target - recode_tolerance; in vp9_rc_compute_frame_size_bounds()
1014 *frame_under_shoot_limit -= 200; in vp9_rc_compute_frame_size_bounds()
1015 if (*frame_under_shoot_limit < 0) in vp9_rc_compute_frame_size_bounds()
1016 *frame_under_shoot_limit = 0; in vp9_rc_compute_frame_size_bounds()
Dvp9_onyx_if.c2290 int frame_under_shoot_limit; local
2294 &frame_under_shoot_limit,
2371 rc->projected_frame_size <= frame_under_shoot_limit)) {
2379 rc->projected_frame_size >= frame_under_shoot_limit) {
2394 cpi, frame_over_shoot_limit, frame_under_shoot_limit,