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

  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
vp9_picklpf.c 63 int filter_step = filt_mid < 16 ? 4 : filt_mid / 4; local
77 while (filter_step > 0) {
78 const int filt_high = MIN(filt_mid + filter_step, max_filter_level);
79 const int filt_low = MAX(filt_mid - filter_step, min_filter_level);
82 int bias = (best_err >> (15 - (filt_mid / 8))) * filter_step;
121 filter_step /= 2;
  /external/libvpx/libvpx/vp9/encoder/
vp9_picklpf.c 58 int filter_step = filt_mid < 16 ? 4 : filt_mid / 4; local
72 while (filter_step > 0) {
73 const int filt_high = MIN(filt_mid + filter_step, max_filter_level);
74 const int filt_low = MAX(filt_mid - filter_step, min_filter_level);
78 int bias = (best_err >> (15 - (filt_mid / 8))) * filter_step;
123 filter_step /= 2;
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_picklpf.c 58 int filter_step = filt_mid < 16 ? 4 : filt_mid / 4; local
72 while (filter_step > 0) {
73 const int filt_high = MIN(filt_mid + filter_step, max_filter_level);
74 const int filt_low = MAX(filt_mid - filter_step, min_filter_level);
78 int bias = (best_err >> (15 - (filt_mid / 8))) * filter_step;
123 filter_step /= 2;
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
picklpf.c 275 int filter_step; local
311 filter_step = (filt_mid < 16) ? 4 : filt_mid / 4;
327 while (filter_step > 0)
329 Bias = (best_err >> (15 - (filt_mid / 8))) * filter_step;
334 filt_high = ((filt_mid + filter_step) > max_filter_level) ? max_filter_level : (filt_mid + filter_step);
335 filt_low = ((filt_mid - filter_step) < min_filter_level) ? min_filter_level : (filt_mid - filter_step);
393 filter_step = filter_step / 2
    [all...]
  /external/libvpx/libvpx/vp8/encoder/
picklpf.c 275 int filter_step; local
311 filter_step = (filt_mid < 16) ? 4 : filt_mid / 4;
327 while (filter_step > 0)
329 Bias = (best_err >> (15 - (filt_mid / 8))) * filter_step;
334 filt_high = ((filt_mid + filter_step) > max_filter_level) ? max_filter_level : (filt_mid + filter_step);
335 filt_low = ((filt_mid - filter_step) < min_filter_level) ? min_filter_level : (filt_mid - filter_step);
393 filter_step = filter_step / 2
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
picklpf.c 275 int filter_step; local
311 filter_step = (filt_mid < 16) ? 4 : filt_mid / 4;
327 while (filter_step > 0)
329 Bias = (best_err >> (15 - (filt_mid / 8))) * filter_step;
334 filt_high = ((filt_mid + filter_step) > max_filter_level) ? max_filter_level : (filt_mid + filter_step);
335 filt_low = ((filt_mid - filter_step) < min_filter_level) ? min_filter_level : (filt_mid - filter_step);
393 filter_step = filter_step / 2
    [all...]

Completed in 258 milliseconds