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

  /external/webp/src/dsp/
yuv.h 202 static WEBP_INLINE int VP8RGBToU(int r, int g, int b, int rounding) {
222 static WEBP_INLINE int VP8RGBToU(int r, int g, int b, int rounding) {
yuv.c 188 // VP8RGBToU/V expects four accumulated pixels. Hence we need to
193 const int tmp_u = VP8RGBToU(r, g, b, YUV_HALF << 2);
209 const int tmp_u = VP8RGBToU(r, g, b, YUV_HALF << 2);
242 u[i] = VP8RGBToU(r, g, b, YUV_HALF << 2);
  /external/webp/src/enc/
picture_tools_enc.c 160 // VP8RGBToU/V expects the u/v values summed over four pixels
161 const int U0 = VP8RGBToU(4 * red, 4 * green, 4 * blue, 4 * YUV_HALF);
picture_csp_enc.c 146 return (rg == NULL) ? VP8RGBToU(r, g, b, YUV_HALF << 2)
147 : VP8RGBToU(r, g, b, VP8RandomBits(rg, YUV_FIX + 2));
    [all...]

Completed in 154 milliseconds