Home
last modified time | relevance | path

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

/external/webp/src/dsp/
Dyuv.h148 static WEBP_INLINE int VP8RGBToY(int r, int g, int b) { in VP8RGBToY() function
169 static WEBP_INLINE int VP8RGBToY(int r, int g, int b) { in VP8RGBToY() function
/external/webp/src/dec/
Dvp8l.c463 y[i] = VP8RGBToY((p >> 16) & 0xff, (p >> 8) & 0xff, (p >> 0) & 0xff); in ConvertToYUVA()
/external/webp/src/enc/
Dpicture.c615 VP8RGBToY(r_ptr[offset], g_ptr[offset], b_ptr[offset]); in ImportYUVAFromRGBA()