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

  /external/webp/src/dsp/
dec.c 24 static int8_t sclip1[1020 + 1020 + 1]; // clips [-1020, 1020] to [-128, 127] variable
40 sclip1[1020 + i] = (i < -128) ? -128 : (i > 127) ? 127 : i;
495 const int a = 3 * (q0 - p0) + sclip1[1020 + p1 - q1];
519 const int a = sclip1[1020 + 3 * (q0 - p0) + sclip1[1020 + p1 - q1]];
  /external/webp/src/enc/
filter.c 21 static int8_t sclip1[1020 + 1020 + 1]; // clips [-1020, 1020] to [-128, 127] variable
35 sclip1[1020 + i] = (i < -128) ? -128 : (i > 127) ? 127 : i;
53 const int a = 3 * (q0 - p0) + sclip1[1020 + p1 - q1];

Completed in 59 milliseconds