Home
last modified time | relevance | path

Searched refs:VP8RGBToV (Results 1 – 4 of 4) sorted by relevance

/external/webp/src/dsp/
Dyuv.h207 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
Dyuv.c194 const int tmp_v = VP8RGBToV(r, g, b, YUV_HALF << 2); in WebPConvertARGBToUV_C()
210 const int tmp_v = VP8RGBToV(r, g, b, YUV_HALF << 2); in WebPConvertARGBToUV_C()
243 v[i] = VP8RGBToV(r, g, b, YUV_HALF << 2); in WebPConvertRGBA32ToUV_C()
/external/webp/src/enc/
Dpicture_tools_enc.c162 const int V0 = VP8RGBToV(4 * red, 4 * green, 4 * blue, 4 * YUV_HALF); in WebPBlendAlpha()
Dpicture_csp_enc.c151 return (rg == NULL) ? VP8RGBToV(r, g, b, YUV_HALF << 2) in RGBToV()
152 : VP8RGBToV(r, g, b, VP8RandomBits(rg, YUV_FIX + 2)); in RGBToV()