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

/external/libvpx/vp8/encoder/
H A Dratectrl.c662 int min_frame_target; local
666 //min_frame_target = estimate_min_frame_size( cpi );
667 min_frame_target = 0;
671 min_frame_target = cpi->min_frame_bandwidth;
673 if (min_frame_target < (cpi->av_per_frame_bandwidth >> 5))
674 min_frame_target = cpi->av_per_frame_bandwidth >> 5;
676 else if (min_frame_target < cpi->per_frame_bandwidth / 4)
677 min_frame_target = cpi->per_frame_bandwidth / 4;
724 if ( Adjustment > (cpi->per_frame_bandwidth - min_frame_target) )
725 Adjustment = (cpi->per_frame_bandwidth - min_frame_target);
[all...]

Completed in 45 milliseconds