Searched refs:VP8RGBToU (Results 1 - 8 of 8) sorted by relevance

/external/chromium_org/third_party/libwebp/dsp/
H A Dyuv.h285 static WEBP_INLINE int VP8RGBToU(int r, int g, int b, int rounding) { function
305 static WEBP_INLINE int VP8RGBToU(int r, int g, int b, int rounding) { function
/external/webp/src/dsp/
H A Dyuv.h285 static WEBP_INLINE int VP8RGBToU(int r, int g, int b, int rounding) { function
305 static WEBP_INLINE int VP8RGBToU(int r, int g, int b, int rounding) { function
/external/chromium_org/third_party/libwebp/enc/
H A Dpicture_tools.c140 // VP8RGBToU/V expects the u/v values summed over four pixels
141 const int U0 = VP8RGBToU(4 * red, 4 * green, 4 * blue, 4 * YUV_HALF);
H A Dpicture_csp.c80 return VP8RGBToU(r, g, b, VP8RandomBits(rg, YUV_FIX + 2));
/external/webp/src/enc/
H A Dpicture_tools.c140 // VP8RGBToU/V expects the u/v values summed over four pixels
141 const int U0 = VP8RGBToU(4 * red, 4 * green, 4 * blue, 4 * YUV_HALF);
H A Dpicture_csp.c80 return VP8RGBToU(r, g, b, VP8RandomBits(rg, YUV_FIX + 2));
/external/chromium_org/third_party/libwebp/dec/
H A Dvp8l.c501 // VP8RGBToU/V expects four accumulated pixels. Hence we need to
507 u[i] = VP8RGBToU(r, g, b, YUV_HALF << 2);
510 const int tmp_u = VP8RGBToU(r, g, b, YUV_HALF << 2);
523 u[i] = VP8RGBToU(r, g, b, YUV_HALF << 2);
526 const int tmp_u = VP8RGBToU(r, g, b, YUV_HALF << 2);
/external/webp/src/dec/
H A Dvp8l.c501 // VP8RGBToU/V expects four accumulated pixels. Hence we need to
507 u[i] = VP8RGBToU(r, g, b, YUV_HALF << 2);
510 const int tmp_u = VP8RGBToU(r, g, b, YUV_HALF << 2);
523 u[i] = VP8RGBToU(r, g, b, YUV_HALF << 2);
526 const int tmp_u = VP8RGBToU(r, g, b, YUV_HALF << 2);

Completed in 2992 milliseconds