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

  /external/libvpx/libvpx/vp8/encoder/
denoising.c 33 * filter_coefficient = (255 << 8) / (256 + ((absdiff * 330) >> 3));
83 int absdiff = 0; local
86 absdiff = abs(diff);
89 if (absdiff <= 3)
96 if (absdiff >= 4 && absdiff <= 7)
98 else if (absdiff >= 8 && absdiff <= 15)
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
denoising.c 33 * filter_coefficient = (255 << 8) / (256 + ((absdiff * 330) >> 3));
84 int absdiff = 0; local
87 absdiff = abs(diff);
90 if (absdiff <= 3)
97 if (absdiff >= 4 && absdiff <= 7)
99 else if (absdiff >= 8 && absdiff <= 15)
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
denoising.c 36 * filter_coefficient = (255 << 8) / (256 + ((absdiff * 330) >> 3));
95 int absdiff = 0; local
98 absdiff = abs(diff);
102 if (absdiff <= 3 + shift_inc1)
109 if (absdiff >= 4 + shift_inc1 && absdiff <= 7)
111 else if (absdiff >= 8 && absdiff <= 15)
272 int absdiff = 0; local
275 absdiff = abs(diff)
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
vp9_denoiser.c 87 int diff, adj, absdiff, delta; local
108 absdiff = abs(diff);
110 if (absdiff <= absdiff_thresh(bs, increase_denoising)) {
114 switch (absdiff) {
  /frameworks/av/services/audioflinger/
AudioResamplerDyn.cpp 210 template<typename T> T absdiff(T a, T b) {return a > b ? a - b : b - a;} function in namespace:android
270 int pdiff = absdiff(newSampleRate, prevSampleRate);
271 int adiff = absdiff(newSampleRate, filterSampleRate);
  /external/ceres-solver/internal/ceres/
rotation_test.cc 679 double absdiff = fabs(x - y); local
681 return absdiff <= kTolerance;
683 double reldiff = absdiff / max(fabs(x), fabs(y));
    [all...]

Completed in 566 milliseconds