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

  /external/libvpx/libvpx/vp8/common/
mfqe.c 207 int ifactor; local
212 ifactor = (sad << MFQE_PRECISION) / thr;
213 ifactor >>= (qdiff >> 5);
215 if (ifactor)
220 blksize, ifactor);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/
mfqe.c 206 int ifactor; local
211 ifactor = (sad << MFQE_PRECISION) / thr;
212 ifactor >>= (qdiff >> 5);
214 if (ifactor)
219 blksize, ifactor);
  /external/libvpx/libvpx/vp9/common/
vp9_mfqe.c 189 int ifactor = weight * sad * vdiff / (sad_thr * vdiff_thr); local
190 // When ifactor equals weight, no MFQE is done.
191 if (ifactor > weight) {
192 ifactor = weight;
195 uvd_stride, bs, ifactor);

Completed in 238 milliseconds