Home
last modified time | relevance | path

Searched refs:RGBToY (Results 1 – 5 of 5) sorted by relevance

/external/chromium_org/media/base/simd/
Dconvert_rgb_to_yuv_sse2.cc61 static inline int RGBToY(int r, int g, int b) { in RGBToY() function
93 *y_buf++ = RGBToY(r, g, b);
/external/webp/src/enc/
Dpicture_csp.c75 static int RGBToY(int r, int g, int b, VP8Random* const rg) { in RGBToY() function
202 dst[x] = RGBToY(r_ptr[offset], g_ptr[offset], b_ptr[offset], &rg); in ImportYUVAFromRGBA()
/external/chromium_org/third_party/libwebp/enc/
Dpicture_csp.c75 static int RGBToY(int r, int g, int b, VP8Random* const rg) { in RGBToY() function
202 dst[x] = RGBToY(r_ptr[offset], g_ptr[offset], b_ptr[offset], &rg); in ImportYUVAFromRGBA()
/external/chromium_org/third_party/libyuv/source/
Drow_common.cc256 static __inline int RGBToY(uint8 r, uint8 g, uint8 b) { in RGBToY() function
271 dst_y[0] = RGBToY(src_argb0[R], src_argb0[G], src_argb0[B]); \
397 dst_y[0] = RGBToY(r, g, b); in RGB565ToYRow_C()
412 dst_y[0] = RGBToY(r, g, b); in ARGB1555ToYRow_C()
427 dst_y[0] = RGBToY(r, g, b); in ARGB4444ToYRow_C()
/external/libyuv/files/source/
Drow_common.cc257 static __inline int RGBToY(uint8 r, uint8 g, uint8 b) { in RGBToY() function
271 dst_y[0] = RGBToY(src_argb0[R], src_argb0[G], src_argb0[B]); \