Home
last modified time | relevance | path

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

/hardware/google/camera/devices/EmulatedCamera/hwl/
DEmulatedSensor.cpp129 const int32_t EmulatedSensor::kSaturationPoint = kFixedBitPrecision * 255; member in android::EmulatedSensor
196 gamma_table_sRGB_.resize(kSaturationPoint + 1); in EmulatedSensor()
197 gamma_table_smpte170m_.resize(kSaturationPoint + 1); in EmulatedSensor()
198 gamma_table_hlg_.resize(kSaturationPoint + 1); in EmulatedSensor()
199 for (int32_t i = 0; i <= kSaturationPoint; i++) { in EmulatedSensor()
200 gamma_table_sRGB_[i] = ApplysRGBGamma(i, kSaturationPoint); in EmulatedSensor()
201 gamma_table_smpte170m_[i] = ApplySMPTE170MGamma(i, kSaturationPoint); in EmulatedSensor()
202 gamma_table_hlg_[i] = ApplyHLGGamma(i, kSaturationPoint); in EmulatedSensor()
1686 r_count = r_count < kSaturationPoint ? r_count : kSaturationPoint; in CaptureYUV420()
1687 g_count = g_count < kSaturationPoint ? g_count : kSaturationPoint; in CaptureYUV420()
[all …]
DEmulatedSensor.h356 static const int32_t kSaturationPoint; variable