Searched defs:src_rgb (Results 1 - 2 of 2) sorted by relevance

/external/libyuv/files/source/
H A Drow_common.cc98 void RGB565ToARGBRow_C(const uint8* src_rgb, uint8* dst_argb, int width) { argument
100 uint8 b = src_rgb[0] & 0x1f;
101 uint8 g = (src_rgb[0] >> 5) | ((src_rgb[1] & 0x07) << 3);
102 uint8 r = src_rgb[1] >> 3;
108 src_rgb += 2;
112 void ARGB1555ToARGBRow_C(const uint8* src_rgb, uint8* dst_argb, int width) { argument
114 uint8 b = src_rgb[0] & 0x1f;
115 uint8 g = (src_rgb[0] >> 5) | ((src_rgb[
127 ARGB4444ToARGBRow_C(const uint8* src_rgb, uint8* dst_argb, int width) argument
[all...]
/external/qemu/android/camera/
H A Dcamera-format-converters.c1042 const void* src_rgb,
1055 src_rgb = src_rgb_fmt->load_rgb(src_rgb, &r, &g, &b);
1061 if (((uintptr_t)src_rgb & 1) != 0) src_rgb = (uint8_t*)src_rgb + 1;
1040 RGBToRGB(const RGBDesc* src_rgb_fmt, const RGBDesc* dst_rgb_fmt, const void* src_rgb, void* dst_rgb, int width, int height, float r_scale, float g_scale, float b_scale, float exp_comp) argument

Completed in 419 milliseconds