HomeSort by relevance Sort by last modified time
    Searched full:thresh16 (Results 1 - 1 of 1) sorted by null

  /external/libvpx/libvpx/vpx_dsp/
loopfilter.c 382 int16_t thresh16 = (uint16_t)thresh << (bd - 8); local
383 mask |= (abs(p1 - p0) > thresh16) * -1;
384 mask |= (abs(q1 - q0) > thresh16) * -1;
385 mask |= (abs(p2 - p0) > thresh16) * -1;
386 mask |= (abs(q2 - q0) > thresh16) * -1;
387 mask |= (abs(p3 - p0) > thresh16) * -1;
388 mask |= (abs(q3 - q0) > thresh16) * -1;
399 int16_t thresh16 = (uint16_t)thresh << (bd - 8); local
400 mask |= (abs(p4 - p0) > thresh16) * -1;
401 mask |= (abs(q4 - q0) > thresh16) * -1
410 int16_t thresh16 = (uint16_t)thresh << (bd - 8); local
    [all...]

Completed in 245 milliseconds