Searched refs:VP8RGBToY (Results 1 – 8 of 8) sorted by relevance
/external/webp/src/dsp/ |
D | yuv.c | 173 y[i] = VP8RGBToY((p >> 16) & 0xff, (p >> 8) & 0xff, (p >> 0) & 0xff, in ConvertARGBToY() 224 y[i] = VP8RGBToY(rgb[0], rgb[1], rgb[2], YUV_HALF); in ConvertRGB24ToY() 231 y[i] = VP8RGBToY(bgr[2], bgr[1], bgr[0], YUV_HALF); in ConvertBGR24ToY()
|
D | yuv.h | 197 static WEBP_INLINE int VP8RGBToY(int r, int g, int b, int rounding) { in VP8RGBToY() function 217 static WEBP_INLINE int VP8RGBToY(int r, int g, int b, int rounding) { in VP8RGBToY() function
|
D | yuv_sse2.c | 609 y[i] = VP8RGBToY(rgb[0], rgb[1], rgb[2], YUV_HALF); in ConvertRGB24ToY() 643 y[i] = VP8RGBToY(bgr[2], bgr[1], bgr[0], YUV_HALF); in ConvertBGR24ToY() 660 y[i] = VP8RGBToY((p >> 16) & 0xff, (p >> 8) & 0xff, (p >> 0) & 0xff, in ConvertARGBToY()
|
/external/opencv3/3rdparty/libwebp/dsp/ |
D | yuv.h | 241 static WEBP_INLINE int VP8RGBToY(int r, int g, int b) { in VP8RGBToY() function 262 static WEBP_INLINE int VP8RGBToY(int r, int g, int b) { in VP8RGBToY() function
|
/external/webp/src/enc/ |
D | picture_tools.c | 159 const int Y0 = VP8RGBToY(red, green, blue, YUV_HALF); in WebPBlendAlpha()
|
D | picture_csp.c | 141 return (rg == NULL) ? VP8RGBToY(r, g, b, YUV_HALF) in RGBToY() 142 : VP8RGBToY(r, g, b, VP8RandomBits(rg, YUV_FIX)); in RGBToY()
|
/external/opencv3/3rdparty/libwebp/enc/ |
D | picture.c | 616 VP8RGBToY(r_ptr[offset], g_ptr[offset], b_ptr[offset]); in ImportYUVAFromRGBA()
|
/external/opencv3/3rdparty/libwebp/dec/ |
D | vp8l.c | 465 y[i] = VP8RGBToY((p >> 16) & 0xff, (p >> 8) & 0xff, (p >> 0) & 0xff); in ConvertToYUVA()
|