Home
last modified time | relevance | path

Searched refs:clip_8b (Results 1 – 4 of 4) 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/src/enc/
Dpicture_csp_enc.c253 static uint8_t clip_8b(fixed_t v) { in clip_8b() function
383 return clip_8b(16 + (luma >> (YUV_FIX + SFIX))); in ConvertRGBToY()
388 return clip_8b(128 + (u >> (YUV_FIX + SFIX))); in ConvertRGBToU()
393 return clip_8b(128 + (v >> (YUV_FIX + SFIX))); in ConvertRGBToV()
/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()