Home
last modified time | relevance | path

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

/hardware/google/camera/devices/EmulatedCamera/hwl/
DEmulatedSensor.cpp1351 uint32_t r_count, g_count, b_count; in CaptureRGB() local
1356 b_count = pixel[EmulatedScene::B] * scale64x; in CaptureRGB()
1360 uint8_t b = b_count < 255 * 64 ? b_count / 64 : 255; in CaptureRGB()
1443 int32_t r_count, g_count, b_count; in CaptureYUV420() local
1451 b_count = pixel[EmulatedScene::B] * scale64x; in CaptureYUV420()
1452 b_count = b_count < kSaturationPoint ? b_count : kSaturationPoint; in CaptureYUV420()
1457 b_count = gamma_table_[b_count]; in CaptureYUV420()
1460 rgb_to_y[2] * b_count) / in CaptureYUV420()
1475 rgb_to_cb[2] * b_count + rgb_to_cb[3]) / in CaptureYUV420()
1478 rgb_to_cr[2] * b_count + rgb_to_cr[3]) / in CaptureYUV420()