Searched refs:VP8RGBToV (Results 1 – 7 of 7) sorted by relevance
/external/webp/src/dsp/ |
D | yuv.c | 192 const int tmp_v = VP8RGBToV(r, g, b, YUV_HALF << 2); in WebPConvertARGBToUV_C() 208 const int tmp_v = VP8RGBToV(r, g, b, YUV_HALF << 2); in WebPConvertARGBToUV_C() 241 v[i] = VP8RGBToV(r, g, b, YUV_HALF << 2); in WebPConvertRGBA32ToUV_C()
|
D | yuv.h | 207 static WEBP_INLINE int VP8RGBToV(int r, int g, int b, int rounding) { in VP8RGBToV() function 227 static WEBP_INLINE int VP8RGBToV(int r, int g, int b, int rounding) { in VP8RGBToV() function
|
/external/opencv3/3rdparty/libwebp/dsp/ |
D | yuv.h | 252 static WEBP_INLINE int VP8RGBToV(int r, int g, int b) { in VP8RGBToV() function 273 static WEBP_INLINE int VP8RGBToV(int r, int g, int b) { in VP8RGBToV() function
|
/external/opencv3/3rdparty/libwebp/dec/ |
D | vp8l.c | 485 v[i] = VP8RGBToV(r, g, b); in ConvertToYUVA() 488 const int tmp_v = VP8RGBToV(r, g, b); in ConvertToYUVA() 501 v[i] = VP8RGBToV(r, g, b); in ConvertToYUVA() 504 const int tmp_v = VP8RGBToV(r, g, b); in ConvertToYUVA()
|
/external/webp/src/enc/ |
D | picture_tools.c | 162 const int V0 = VP8RGBToV(4 * red, 4 * green, 4 * blue, 4 * YUV_HALF); in WebPBlendAlpha()
|
D | picture_csp.c | 151 return (rg == NULL) ? VP8RGBToV(r, g, b, YUV_HALF << 2) in RGBToV() 152 : VP8RGBToV(r, g, b, VP8RandomBits(rg, YUV_FIX + 2)); in RGBToV()
|
/external/opencv3/3rdparty/libwebp/enc/ |
D | picture.c | 568 picture->v[dst] = VP8RGBToV(r, g, b); \ 578 picture->v0[dst] = VP8RGBToV(r, g, b); \
|