Home
last modified time | relevance | path

Searched refs:clip_8b (Results 1 – 5 of 5) sorted by relevance

/external/webp/src/utils/
Dquant_levels_dec_utils.c75 static WEBP_INLINE uint8_t clip_8b(int v) { in clip_8b() function
148 dst[x] = clip_8b(c + dither[x % DSIZE]); in ApplyFilter()
150 dst[x] = clip_8b(c); in ApplyFilter()
/external/webp/sharpyuv/
Dsharpyuv.c57 static uint8_t clip_8b(fixed_t v) { in clip_8b() function
245 y_ptr[i] = clip_8b(y); in ConvertWRGBToYUV()
265 u_ptr[i] = clip_8b(u); in ConvertWRGBToYUV()
266 v_ptr[i] = clip_8b(v); in ConvertWRGBToYUV()
/external/webp/src/dsp/
Denc.c20 static WEBP_INLINE uint8_t clip_8b(int v) { in clip_8b() function
97 clip1[255 + i] = clip_8b(i); in InitTables()
110 dst[(x) + (y) * BPS] = clip_8b(ref[(x) + (y) * BPS] + ((v) >> 3))
Ddec.c22 static WEBP_INLINE uint8_t clip_8b(int v) { in clip_8b() function
30 dst[(x) + (y) * BPS] = clip_8b(dst[(x) + (y) * BPS] + ((v) >> 3))
706 dst[i] = clip_8b((int)dst[i] + delta1); in DitherCombine8x8_C()
/external/webp/
DChangeLog4527 0e94935c Merge "table-less version of clip_8b()"
4528 1e0a2d25 table-less version of clip_8b()