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.cpp955 uint32_t r_count, g_count, b_count; in CaptureRGB() local
960 b_count = pixel[EmulatedScene::B] * scale64x; in CaptureRGB()
964 uint8_t b = b_count < 255 * 64 ? b_count / 64 : 255; in CaptureRGB()
1047 int32_t r_count, g_count, b_count; in CaptureYUV420() local
1055 b_count = pixel[EmulatedScene::B] * scale64x; in CaptureYUV420()
1056 b_count = b_count < kSaturationPoint ? b_count : kSaturationPoint; in CaptureYUV420()
1061 b_count = gamma_table_[b_count]; in CaptureYUV420()
1064 rgb_to_y[2] * b_count) / in CaptureYUV420()
1068 rgb_to_cb[2] * b_count + rgb_to_cb[3]) / in CaptureYUV420()
1071 rgb_to_cr[2] * b_count + rgb_to_cr[3]) / in CaptureYUV420()