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

  /external/webp/src/utils/
quant_levels_dec.c 74 static WEBP_INLINE uint8_t clip_8b(int v) { function
146 dst[x] = clip_8b(c + dither[x % DSIZE]);
148 dst[x] = clip_8b(c);
  /external/webp/src/enc/
picture_csp.c 256 static uint8_t clip_8b(fixed_t v) { function
404 return clip_8b(16 + (luma >> (YUV_FIX + TFIX)));
409 return clip_8b(128 + (u >> (YUV_FIX + TFIX)));
414 return clip_8b(128 + (v >> (YUV_FIX + TFIX)));
    [all...]
  /external/webp/src/dsp/
enc.c 20 static WEBP_INLINE uint8_t clip_8b(int v) { function
75 clip1[255 + i] = clip_8b(i);
86 dst[(x) + (y) * BPS] = clip_8b(ref[(x) + (y) * BPS] + ((v) >> 3))
dec.c 19 static WEBP_INLINE uint8_t clip_8b(int v) { function
27 dst[x + y * BPS] = clip_8b(dst[x + y * BPS] + ((v) >> 3))
62 // In the worst case scenario, the input to clip_8b() can be as large as

Completed in 121 milliseconds