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

  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
ratectrl.c 608 int min_frame_target; local
615 min_frame_target = 0;
619 min_frame_target = cpi->min_frame_bandwidth;
621 if (min_frame_target < (cpi->av_per_frame_bandwidth >> 5))
622 min_frame_target = cpi->av_per_frame_bandwidth >> 5;
624 else if (min_frame_target < cpi->per_frame_bandwidth / 4)
625 min_frame_target = cpi->per_frame_bandwidth / 4;
661 if (Adjustment > (cpi->per_frame_bandwidth - min_frame_target))
662 Adjustment = (cpi->per_frame_bandwidth - min_frame_target);
672 if (cpi->this_frame_target < min_frame_target)
    [all...]
  /external/libvpx/libvpx/vp8/encoder/
ratectrl.c 608 int min_frame_target; local
615 min_frame_target = 0;
619 min_frame_target = cpi->min_frame_bandwidth;
621 if (min_frame_target < (cpi->av_per_frame_bandwidth >> 5))
622 min_frame_target = cpi->av_per_frame_bandwidth >> 5;
624 else if (min_frame_target < cpi->per_frame_bandwidth / 4)
625 min_frame_target = cpi->per_frame_bandwidth / 4;
661 if (Adjustment > (cpi->per_frame_bandwidth - min_frame_target))
662 Adjustment = (cpi->per_frame_bandwidth - min_frame_target);
672 if (cpi->this_frame_target < min_frame_target)
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
ratectrl.c 608 int min_frame_target; local
615 min_frame_target = 0;
619 min_frame_target = cpi->min_frame_bandwidth;
621 if (min_frame_target < (cpi->av_per_frame_bandwidth >> 5))
622 min_frame_target = cpi->av_per_frame_bandwidth >> 5;
624 else if (min_frame_target < cpi->per_frame_bandwidth / 4)
625 min_frame_target = cpi->per_frame_bandwidth / 4;
661 if (Adjustment > (cpi->per_frame_bandwidth - min_frame_target))
662 Adjustment = (cpi->per_frame_bandwidth - min_frame_target);
672 if (cpi->this_frame_target < min_frame_target)
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_ratectrl.c 114 const int min_frame_target = MAX(rc->min_frame_bandwidth, local
116 if (target < min_frame_target)
117 target = min_frame_target;
123 target = min_frame_target;
1234 int min_frame_target = MAX(rc->av_per_frame_bandwidth >> 4, local
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_ratectrl.c 167 const int min_frame_target = MAX(rc->min_frame_bandwidth, local
169 if (target < min_frame_target)
170 target = min_frame_target;
176 target = min_frame_target;
1238 int min_frame_target = MAX(rc->av_per_frame_bandwidth >> 4, local
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
vp9_ratectrl.c 195 const int min_frame_target = MAX(rc->min_frame_bandwidth, local
197 if (target < min_frame_target)
198 target = min_frame_target;
204 target = min_frame_target;
1311 int min_frame_target = MAX(rc->avg_frame_bandwidth >> 4, FRAME_OVERHEAD_BITS); local
    [all...]

Completed in 304 milliseconds