Searched refs:VP8RGBToU (Results 1 – 7 of 7) sorted by relevance
/external/webp/src/dsp/ |
D | yuv.c | 191 const int tmp_u = VP8RGBToU(r, g, b, YUV_HALF << 2); in WebPConvertARGBToUV_C() 207 const int tmp_u = VP8RGBToU(r, g, b, YUV_HALF << 2); in WebPConvertARGBToUV_C() 240 u[i] = VP8RGBToU(r, g, b, YUV_HALF << 2); in WebPConvertRGBA32ToUV_C()
|
D | yuv.h | 202 static WEBP_INLINE int VP8RGBToU(int r, int g, int b, int rounding) { in VP8RGBToU() function 222 static WEBP_INLINE int VP8RGBToU(int r, int g, int b, int rounding) { in VP8RGBToU() function
|
/external/opencv3/3rdparty/libwebp/dsp/ |
D | yuv.h | 247 static WEBP_INLINE int VP8RGBToU(int r, int g, int b) { in VP8RGBToU() function 268 static WEBP_INLINE int VP8RGBToU(int r, int g, int b) { in VP8RGBToU() function
|
/external/opencv3/3rdparty/libwebp/dec/ |
D | vp8l.c | 484 u[i] = VP8RGBToU(r, g, b); in ConvertToYUVA() 487 const int tmp_u = VP8RGBToU(r, g, b); in ConvertToYUVA() 500 u[i] = VP8RGBToU(r, g, b); in ConvertToYUVA() 503 const int tmp_u = VP8RGBToU(r, g, b); in ConvertToYUVA()
|
/external/webp/src/enc/ |
D | picture_tools.c | 161 const int U0 = VP8RGBToU(4 * red, 4 * green, 4 * blue, 4 * YUV_HALF); in WebPBlendAlpha()
|
D | picture_csp.c | 146 return (rg == NULL) ? VP8RGBToU(r, g, b, YUV_HALF << 2) in RGBToU() 147 : VP8RGBToU(r, g, b, VP8RandomBits(rg, YUV_FIX + 2)); in RGBToU()
|
/external/opencv3/3rdparty/libwebp/enc/ |
D | picture.c | 567 picture->u[dst] = VP8RGBToU(r, g, b); \ 577 picture->u0[dst] = VP8RGBToU(r, g, b); \
|