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

/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_ratectrl.h65 int projected_frame_size; member in struct:__anon9587
H A Dvp9_encoder.c2619 scale = rc->projected_frame_size > max_size_thresh ? 1 : 0;
2634 if ((rc->projected_frame_size >= rc->max_frame_bandwidth) ||
2647 if ((rc->projected_frame_size > high_limit && q < maxq) ||
2648 (rc->projected_frame_size < low_limit && q > minq)) {
2654 rc->projected_frame_size < ((rc->this_frame_target * 7) >> 3)) {
2953 cpi->rc.projected_frame_size,
2954 cpi->rc.projected_frame_size / cpi->common.MBs,
2955 (cpi->rc.projected_frame_size - cpi->rc.this_frame_target),
3374 rc->projected_frame_size = (int)(*size) << 3;
3386 (rc->projected_frame_size < r
[all...]
H A Dvp9_ratectrl.c475 correction_factor = (int)((100 * (int64_t)cpi->rc.projected_frame_size) /
1279 rc->projected_frame_size = (int)(bytes_used << 3);
1333 update_buffer_level(cpi, rc->projected_frame_size);
1341 rc->rolling_actual_bits * 3 + rc->projected_frame_size, 2);
1345 rc->long_rolling_actual_bits * 31 + rc->projected_frame_size, 5);
1349 rc->total_actual_bits += rc->projected_frame_size;
H A Dvp9_firstpass.c2772 rc->vbr_bits_off_target += rc->base_frame_target - rc->projected_frame_size;
2815 if (rc->projected_frame_size > (2 * rc->base_frame_target) &&
2816 rc->projected_frame_size > (2 * rc->avg_frame_bandwidth))
2835 if (rc->projected_frame_size < fast_extra_thresh) {
2837 fast_extra_thresh - rc->projected_frame_size;
/external/libvpx/libvpx/vp8/encoder/
H A Donyx_if.c2850 cpi->gf_overspend_bits += cpi->projected_frame_size;
2896 cpi->gf_overspend_bits += (cpi->projected_frame_size - cpi->inter_frame_target);
3155 if ( ((cpi->projected_frame_size > high_limit) && (q < maxq)) ||
3156 ((cpi->projected_frame_size < low_limit) && (q > minq)) )
3165 (cpi->projected_frame_size <
3172 (cpi->projected_frame_size < cpi->min_frame_bandwidth) &&
4390 /* cpi->projected_frame_size is not needed for RT mode */
4401 cpi->projected_frame_size -= vp8_estimate_entropy_savings(cpi);
4402 cpi->projected_frame_size = (cpi->projected_frame_size >
[all...]
H A Dratectrl.c1160 correction_factor = (100 * cpi->projected_frame_size) / projected_size_based_on_q;
1429 && (cpi->projected_frame_size > cpi->per_frame_bandwidth))
1439 overspend = (cpi->projected_frame_size - cpi->per_frame_bandwidth);
1578 // Note: the "projected_frame_size" from encode_frame() only gives estimate
1580 // that projected_frame_size is somewhat greater than per-frame-bandwidth,
1592 cpi->projected_frame_size > thresh_rate &&
H A Donyx_int.h367 int projected_frame_size; member in struct:VP8_COMP
H A Dencodeframe.c1006 /* projected_frame_size in units of BYTES */
1007 cpi->projected_frame_size = totalrate >> 8;

Completed in 95 milliseconds