Searched refs:r_count (Results 1 – 2 of 2) sorted by relevance
/hardware/google/camera/devices/EmulatedCamera/hwl/ |
D | EmulatedSensor.cpp | 1575 uint32_t r_count, g_count, b_count; in CaptureRGB() local 1578 r_count = pixel[EmulatedScene::R] * scale64x; in CaptureRGB() 1584 RgbToRgb(&r_count, &g_count, &b_count); in CaptureRGB() 1587 uint8_t r = r_count < 255 * 64 ? r_count / 64 : 255; in CaptureRGB() 1673 uint32_t r_count, g_count, b_count; in CaptureYUV420() local 1677 r_count = pixel[EmulatedScene::R] * scale64x; in CaptureYUV420() 1683 RgbToRgb(&r_count, &g_count, &b_count); in CaptureYUV420() 1686 r_count = r_count < kSaturationPoint ? r_count : kSaturationPoint; in CaptureYUV420() 1691 r_count = GammaTable(r_count, color_space); in CaptureYUV420() 1695 uint8_t y8 = (rgb_to_y[0] * r_count + rgb_to_y[1] * g_count + in CaptureYUV420() [all …]
|
D | EmulatedSensor.h | 431 void RgbToRgb(uint32_t* r_count, uint32_t* g_count, uint32_t* b_count);
|