HomeSort by relevance Sort by last modified time
    Searched refs:min_frame_target (Results 1 - 2 of 2) sorted by null

  /external/libvpx/libvpx/vp8/encoder/
ratectrl.c 545 int min_frame_target; local
553 min_frame_target = 0;
556 min_frame_target = cpi->min_frame_bandwidth;
558 if (min_frame_target < (cpi->av_per_frame_bandwidth >> 5)) {
559 min_frame_target = cpi->av_per_frame_bandwidth >> 5;
561 } else if (min_frame_target < cpi->per_frame_bandwidth / 4) {
562 min_frame_target = cpi->per_frame_bandwidth / 4;
595 if (Adjustment > (cpi->per_frame_bandwidth - min_frame_target)) {
596 Adjustment = (cpi->per_frame_bandwidth - min_frame_target);
607 if (cpi->this_frame_target < min_frame_target) {
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_ratectrl.c 218 const int min_frame_target = local
220 if (target < min_frame_target) target = min_frame_target;
226 target = min_frame_target;
1590 int min_frame_target = local
    [all...]

Completed in 715 milliseconds