Searched refs:VP8YUVToG (Results 1 - 2 of 2) sorted by relevance

/external/webp/src/dsp/
H A Dyuv.h85 static WEBP_INLINE int VP8YUVToG(int y, int u, int v) { function
96 rgb[1] = VP8YUVToG(y, u, v);
103 bgr[1] = VP8YUVToG(y, u, v);
110 const int g = VP8YUVToG(y, u, v); // 6 usable bits
126 const int g = VP8YUVToG(y, u, v); // 4 usable bits
/external/opencv3/3rdparty/libwebp/dsp/
H A Dyuv.h154 static WEBP_INLINE int VP8YUVToG(int y, int u, int v) { function
165 rgb[1] = VP8Clip8(VP8YUVToG(y, u, v));
172 bgr[1] = VP8Clip8(VP8YUVToG(y, u, v));
179 const int g = VP8ClipN(VP8YUVToG(y, u, v), 6);
195 const int g = VP8ClipN(VP8YUVToG(y, u, v), 4);

Completed in 82 milliseconds