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.c2601 cpi->gf_overspend_bits += cpi->projected_frame_size; in update_alt_ref_frame_stats()
2642 (cpi->projected_frame_size - cpi->inter_frame_target); in update_golden_frame_stats()
2874 if (((cpi->projected_frame_size > high_limit) && (q < maxq)) || in recode_loop_test()
2875 ((cpi->projected_frame_size < low_limit) && (q > minq))) { in recode_loop_test()
2882 (cpi->projected_frame_size < ((cpi->this_frame_target * 7) >> 3))) { in recode_loop_test()
2887 (cpi->projected_frame_size < cpi->min_frame_bandwidth) && in recode_loop_test()
3996 cpi->projected_frame_size -= vp8_estimate_entropy_savings(cpi); in encode_frame_to_data_rate()
3997 cpi->projected_frame_size = in encode_frame_to_data_rate()
3998 (cpi->projected_frame_size > 0) ? cpi->projected_frame_size : 0; in encode_frame_to_data_rate()
4053 (cpi->projected_frame_size > frame_over_shoot_limit)) { in encode_frame_to_data_rate()
[all …]
Dratectrl.c1081 (100 * cpi->projected_frame_size) / projected_size_based_on_q; in vp8_update_rate_correction_factors()
1330 (cpi->projected_frame_size > cpi->per_frame_bandwidth)) { in vp8_adjust_key_frame_context()
1339 overspend = (cpi->projected_frame_size - cpi->per_frame_bandwidth); in vp8_adjust_key_frame_context()
1464 if (Q < thresh_qp && cpi->projected_frame_size > thresh_rate && in vp8_drop_encodedframe_overshoot()
Donyx_int.h339 int projected_frame_size; member
Dencodeframe.c928 cpi->projected_frame_size = totalrate >> 8; in vp8_encode_frame()
/external/libvpx/libvpx/vp9/encoder/
Dvp9_ratectrl.h80 int projected_frame_size; member
Dvp9_encoder.c2780 scale = rc->projected_frame_size > max_size_thresh ? 1 : 0;
2788 return (rc->projected_frame_size > ((high_limit * 3) / 2)) ||
2789 (rc->projected_frame_size < (low_limit / 2));
2813 if ((rc->projected_frame_size >= rc->max_frame_bandwidth) ||
2826 if (rc->projected_frame_size >= rc->max_frame_bandwidth) return 1;
2829 if ((rc->projected_frame_size > high_limit && q < maxq) ||
2830 (rc->projected_frame_size < low_limit && q > minq)) {
2836 rc->projected_frame_size < ((rc->this_frame_target * 7) >> 3)) {
3210 cpi->rc.projected_frame_size,
3211 cpi->rc.projected_frame_size / cpi->common.MBs,
[all …]
Dvp9_ratectrl.c501 correction_factor = (int)((100 * (int64_t)cpi->rc.projected_frame_size) / in vp9_rc_update_rate_correction_factors()
1368 rc->projected_frame_size = (int)(bytes_used << 3); in vp9_rc_postencode_update()
1420 update_buffer_level(cpi, rc->projected_frame_size); in vp9_rc_postencode_update()
1428 rc->rolling_actual_bits * 3 + rc->projected_frame_size, 2); in vp9_rc_postencode_update()
1432 rc->long_rolling_actual_bits * 31 + rc->projected_frame_size, 5); in vp9_rc_postencode_update()
1436 rc->total_actual_bits += rc->projected_frame_size; in vp9_rc_postencode_update()
Dvp9_firstpass.c3240 rc->vbr_bits_off_target += rc->base_frame_target - rc->projected_frame_size; in vp9_twopass_postencode_update()
3245 twopass->rolling_arf_group_actual_bits += rc->projected_frame_size; in vp9_twopass_postencode_update()
3301 if (rc->projected_frame_size > (2 * rc->base_frame_target) && in vp9_twopass_postencode_update()
3302 rc->projected_frame_size > (2 * rc->avg_frame_bandwidth)) in vp9_twopass_postencode_update()
3323 if (rc->projected_frame_size < fast_extra_thresh) { in vp9_twopass_postencode_update()
3325 fast_extra_thresh - rc->projected_frame_size; in vp9_twopass_postencode_update()