Searched refs:min_frame_target (Results 1 - 2 of 2) sorted by relevance

/external/libvpx/libvpx/vp8/encoder/
H A Dratectrl.c543 int min_frame_target; local
551 min_frame_target = 0;
554 min_frame_target = cpi->min_frame_bandwidth;
556 if (min_frame_target < (cpi->av_per_frame_bandwidth >> 5)) {
557 min_frame_target = cpi->av_per_frame_bandwidth >> 5;
559 } else if (min_frame_target < cpi->per_frame_bandwidth / 4) {
560 min_frame_target = cpi->per_frame_bandwidth / 4;
593 if (Adjustment > (cpi->per_frame_bandwidth - min_frame_target)) {
594 Adjustment = (cpi->per_frame_bandwidth - min_frame_target);
605 if (cpi->this_frame_target < min_frame_target) {
[all...]
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_ratectrl.c215 const int min_frame_target = local
217 if (target < min_frame_target) target = min_frame_target;
223 target = min_frame_target;
1615 int min_frame_target = local
1638 min_frame_target = VPXMAX(lc->avg_frame_size >> 4, FRAME_OVERHEAD_BITS);
1655 return VPXMAX(min_frame_target, target);

Completed in 231 milliseconds