Home
last modified time | relevance | path

Searched refs:projected_frame_size (Results 1 – 8 of 8) sorted by relevance

/external/libvpx/libvpx/vp8/encoder/
Donyx_if.c2801 cpi->gf_overspend_bits += cpi->projected_frame_size; in update_alt_ref_frame_stats()
2847 cpi->gf_overspend_bits += (cpi->projected_frame_size - cpi->inter_frame_target); in update_golden_frame_stats()
3106 if ( ((cpi->projected_frame_size > high_limit) && (q < maxq)) || in recode_loop_test()
3107 ((cpi->projected_frame_size < low_limit) && (q > minq)) ) in recode_loop_test()
3116 (cpi->projected_frame_size < in recode_loop_test()
3123 (cpi->projected_frame_size < cpi->min_frame_bandwidth) && in recode_loop_test()
4075 cpi->projected_frame_size -= vp8_estimate_entropy_savings(cpi); in encode_frame_to_data_rate()
4076 cpi->projected_frame_size = (cpi->projected_frame_size > 0) ? cpi->projected_frame_size : 0; in encode_frame_to_data_rate()
4132 (cpi->projected_frame_size > frame_over_shoot_limit)) in encode_frame_to_data_rate()
4134 …int over_size_percent = ((cpi->projected_frame_size - frame_over_shoot_limit) * 100) / frame_over_… in encode_frame_to_data_rate()
[all …]
Dratectrl.c1154 correction_factor = (100 * cpi->projected_frame_size) / projected_size_based_on_q; in vp8_update_rate_correction_factors()
1418 && (cpi->projected_frame_size > cpi->per_frame_bandwidth)) in vp8_adjust_key_frame_context()
1428 overspend = (cpi->projected_frame_size - cpi->per_frame_bandwidth); in vp8_adjust_key_frame_context()
Donyx_int.h367 int projected_frame_size; member
Dencodeframe.c1000 cpi->projected_frame_size = totalrate >> 8; in vp8_encode_frame()
/external/libvpx/libvpx/vp9/encoder/
Dvp9_ratectrl.h40 int projected_frame_size; member
Dvp9_encoder.c1466 if (rc->projected_frame_size > rc->max_frame_bandwidth) { in recode_loop_test()
1477 if ((rc->projected_frame_size > high_limit && q < maxq) || in recode_loop_test()
1478 (rc->projected_frame_size < low_limit && q > minq)) { in recode_loop_test()
1484 rc->projected_frame_size < ((rc->this_frame_target * 7) >> 3)) { in recode_loop_test()
1657 cpi->rc.projected_frame_size,
1658 cpi->rc.projected_frame_size / cpi->common.MBs,
1659 (cpi->rc.projected_frame_size - cpi->rc.this_frame_target),
1777 rc->projected_frame_size = (int)(*size) << 3; in encode_with_recode_loop()
1789 (rc->projected_frame_size < rc->max_frame_bandwidth)) { in encode_with_recode_loop()
1802 rc->projected_frame_size <= frame_over_shoot_limit) || in encode_with_recode_loop()
[all …]
Dvp9_ratectrl.c336 correction_factor = (100 * cpi->rc.projected_frame_size) / in vp9_rc_update_rate_correction_factors()
1022 rc->projected_frame_size = (int)(bytes_used << 3); in vp9_rc_postencode_update()
1063 update_buffer_level(cpi, rc->projected_frame_size); in vp9_rc_postencode_update()
1071 rc->rolling_actual_bits * 3 + rc->projected_frame_size, 2); in vp9_rc_postencode_update()
1075 rc->long_rolling_actual_bits * 31 + rc->projected_frame_size, 5); in vp9_rc_postencode_update()
1079 rc->total_actual_bits += rc->projected_frame_size; in vp9_rc_postencode_update()
Dvp9_firstpass.c2273 rc->vbr_bits_off_target += rc->base_frame_target - rc->projected_frame_size; in vp9_twopass_postencode_update()