Searched refs:sclip1 (Results 1 - 2 of 2) sorted by relevance

/external/webp/src/enc/
H A Dfilter.c22 static int8_t sclip1[1020 + 1020 + 1]; // clips [-1020, 1020] to [-128, 127] variable
36 sclip1[1020 + i] = (i < -128) ? -128 : (i > 127) ? 127 : i;
54 const int a = 3 * (q0 - p0) + sclip1[1020 + p1 - q1];
/external/webp/src/dec/
H A Ddsp.c23 static int8_t sclip1[1020 + 1020 + 1]; // clips [-1020, 1020] to [-128, 127] variable
39 sclip1[1020 + i] = (i < -128) ? -128 : (i > 127) ? 127 : i;
494 const int a = 3 * (q0 - p0) + sclip1[1020 + p1 - q1];
518 const int a = sclip1[1020 + 3 * (q0 - p0) + sclip1[1020 + p1 - q1]];

Completed in 71 milliseconds