Home
last modified time | relevance | path

Searched refs:b_count (Results 1 – 2 of 2) sorted by relevance

/hardware/google/camera/devices/EmulatedCamera/hwl/
DEmulatedSensor.cpp1575 uint32_t r_count, g_count, b_count; in CaptureRGB() local
1580 b_count = pixel[EmulatedScene::B] * scale64x; in CaptureRGB()
1584 RgbToRgb(&r_count, &g_count, &b_count); in CaptureRGB()
1589 uint8_t b = b_count < 255 * 64 ? b_count / 64 : 255; in CaptureRGB()
1673 uint32_t r_count, g_count, b_count; in CaptureYUV420() local
1679 b_count = pixel[EmulatedScene::B] * scale64x; in CaptureYUV420()
1683 RgbToRgb(&r_count, &g_count, &b_count); in CaptureYUV420()
1688 b_count = b_count < kSaturationPoint ? b_count : kSaturationPoint; in CaptureYUV420()
1693 b_count = GammaTable(b_count, color_space); in CaptureYUV420()
1696 rgb_to_y[2] * b_count) / in CaptureYUV420()
[all …]
DEmulatedSensor.h431 void RgbToRgb(uint32_t* r_count, uint32_t* g_count, uint32_t* b_count);