Searched refs:frame_under_shoot_limit (Results 1 – 6 of 6) sorted by relevance
/external/libvpx/libvpx/vp8/encoder/ |
D | ratectrl.c | 1461 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 1469 *frame_under_shoot_limit = 0; in vp8_compute_frame_size_bounds() 1477 *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 * 7 / 8; in vp8_compute_frame_size_bounds() 1499 *frame_under_shoot_limit = cpi->this_frame_target * 6 / 8; in vp8_compute_frame_size_bounds() 1507 *frame_under_shoot_limit = cpi->this_frame_target * 4 / 8; in vp8_compute_frame_size_bounds() 1512 *frame_under_shoot_limit = cpi->this_frame_target * 5 / 8; in vp8_compute_frame_size_bounds() 1525 *frame_under_shoot_limit = cpi->this_frame_target * 2 / 8; in vp8_compute_frame_size_bounds() 1530 *frame_under_shoot_limit = cpi->this_frame_target * 5 / 8; in vp8_compute_frame_size_bounds() 1541 *frame_under_shoot_limit -= 200; in vp8_compute_frame_size_bounds() [all …]
|
D | ratectrl.h | 28 extern void vp8_compute_frame_size_bounds(VP8_COMP *cpi, int *frame_under_shoot_limit, int *frame_o…
|
D | onyx_if.c | 3574 int frame_under_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() 4498 frame_over_shoot_limit, frame_under_shoot_limit, in encode_frame_to_data_rate()
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_ratectrl.h | 230 int *frame_under_shoot_limit,
|
D | vp9_ratectrl.c | 1206 int *frame_under_shoot_limit, in vp9_rc_compute_frame_size_bounds() argument 1209 *frame_under_shoot_limit = 0; in vp9_rc_compute_frame_size_bounds() 1215 *frame_under_shoot_limit = VPXMAX(frame_target - tolerance - 200, 0); in vp9_rc_compute_frame_size_bounds()
|
D | vp9_encoder.c | 3353 int frame_under_shoot_limit; local 3385 &frame_under_shoot_limit, 3472 rc->projected_frame_size <= frame_under_shoot_limit)) { 3480 rc->projected_frame_size >= frame_under_shoot_limit) { 3495 cpi, frame_over_shoot_limit, frame_under_shoot_limit,
|