Home
last modified time | relevance | path

Searched refs:VP8RGBToY (Results 1 – 8 of 8) sorted by relevance

/external/webp/src/dsp/
Dyuv.c173 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()
Dyuv.h197 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
Dyuv_sse2.c609 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/
Dyuv.h241 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/
Dpicture_tools.c159 const int Y0 = VP8RGBToY(red, green, blue, YUV_HALF); in WebPBlendAlpha()
Dpicture_csp.c141 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/
Dpicture.c616 VP8RGBToY(r_ptr[offset], g_ptr[offset], b_ptr[offset]); in ImportYUVAFromRGBA()
/external/opencv3/3rdparty/libwebp/dec/
Dvp8l.c465 y[i] = VP8RGBToY((p >> 16) & 0xff, (p >> 8) & 0xff, (p >> 0) & 0xff); in ConvertToYUVA()