Home
last modified time | relevance | path

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

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
Dvp9_ratectrl.h28 int projected_frame_size; member
Dvp9_ratectrl.c320 correction_factor = (100 * cpi->rc.projected_frame_size) / in vp9_rc_update_rate_correction_factors()
1079 rc->projected_frame_size = (int)(bytes_used << 3); in vp9_rc_postencode_update()
1122 update_buffer_level(cpi, rc->projected_frame_size); in vp9_rc_postencode_update()
1130 rc->rolling_actual_bits * 3 + rc->projected_frame_size, 2); in vp9_rc_postencode_update()
1134 rc->long_rolling_actual_bits * 31 + rc->projected_frame_size, 5); in vp9_rc_postencode_update()
1138 rc->total_actual_bits += rc->projected_frame_size; in vp9_rc_postencode_update()
Dvp9_onyx_if.c2015 if (rc->projected_frame_size > rc->max_frame_bandwidth) { in recode_loop_test()
2026 if ((rc->projected_frame_size > high_limit && q < maxq) || in recode_loop_test()
2027 (rc->projected_frame_size < low_limit && q > minq)) { in recode_loop_test()
2033 rc->projected_frame_size < ((rc->this_frame_target * 7) >> 3)) { in recode_loop_test()
2197 cpi->rc.projected_frame_size,
2198 cpi->rc.projected_frame_size / cpi->common.MBs,
2199 (cpi->rc.projected_frame_size - cpi->rc.this_frame_target),
2344 rc->projected_frame_size = (int)(*size) << 3;
2356 (rc->projected_frame_size < rc->max_frame_bandwidth)) {
2369 rc->projected_frame_size <= frame_over_shoot_limit) ||
[all …]
Dvp9_firstpass.c2333 const uint64_t bits_used = cpi->rc.projected_frame_size; in vp9_twopass_postencode_update()
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
Donyx_if.c2754 cpi->gf_overspend_bits += cpi->projected_frame_size; in update_alt_ref_frame_stats()
2800 cpi->gf_overspend_bits += (cpi->projected_frame_size - cpi->inter_frame_target); in update_golden_frame_stats()
3059 if ( ((cpi->projected_frame_size > high_limit) && (q < maxq)) || in recode_loop_test()
3060 ((cpi->projected_frame_size < low_limit) && (q > minq)) ) in recode_loop_test()
3069 (cpi->projected_frame_size < in recode_loop_test()
3076 (cpi->projected_frame_size < cpi->min_frame_bandwidth) && in recode_loop_test()
4030 cpi->projected_frame_size -= vp8_estimate_entropy_savings(cpi); in encode_frame_to_data_rate()
4031 cpi->projected_frame_size = (cpi->projected_frame_size > 0) ? cpi->projected_frame_size : 0; in encode_frame_to_data_rate()
4087 (cpi->projected_frame_size > frame_over_shoot_limit)) in encode_frame_to_data_rate()
4089 …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.h370 int projected_frame_size; member
Dencodeframe.c988 cpi->projected_frame_size = totalrate >> 8; in vp8_encode_frame()