Home
last modified time | relevance | path

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

/hardware/google/camera/devices/EmulatedCamera/hwl/utils/
DHWLUtils.cpp46 SensorCharacteristics* sensor_chars /*out*/) { in GetSensorCharacteristics() argument
47 if ((metadata == nullptr) || (sensor_chars == nullptr)) { in GetSensorCharacteristics()
58 sensor_chars->width = entry.data.i32[0]; in GetSensorCharacteristics()
59 sensor_chars->height = entry.data.i32[1]; in GetSensorCharacteristics()
67 sensor_chars->max_raw_streams = entry.data.i32[0]; in GetSensorCharacteristics()
68 sensor_chars->max_processed_streams = entry.data.i32[1]; in GetSensorCharacteristics()
69 sensor_chars->max_stalling_streams = entry.data.i32[2]; in GetSensorCharacteristics()
75 (entry.count != ARRAY_SIZE(sensor_chars->exposure_time_range))) { in GetSensorCharacteristics()
80 memcpy(sensor_chars->exposure_time_range, entry.data.i64, in GetSensorCharacteristics()
81 sizeof(sensor_chars->exposure_time_range)); in GetSensorCharacteristics()
[all …]
DHWLUtils.h48 SensorCharacteristics* sensor_chars /*out*/);
DExifUtils.h52 static ExifUtils* Create(SensorCharacteristics sensor_chars);
DExifUtils.cpp52 ExifUtilsImpl(SensorCharacteristics sensor_chars);
295 ExifUtils* ExifUtils::Create(SensorCharacteristics sensor_chars) { in Create() argument
296 return new ExifUtilsImpl(sensor_chars); in Create()
302 ExifUtilsImpl::ExifUtilsImpl(SensorCharacteristics sensor_chars) in ExifUtilsImpl() argument
306 sensor_chars_(sensor_chars) { in ExifUtilsImpl()
/hardware/google/camera/devices/EmulatedCamera/hwl/
DEmulatedSensor.cpp248 const SensorCharacteristics& sensor_chars) { in IsStreamCombinationSupported() argument
262 if (sensor_chars.max_input_streams == 0) { in IsStreamCombinationSupported()
309 if (raw_stream_count > sensor_chars.max_raw_streams) { in IsStreamCombinationSupported()
311 __FUNCTION__, raw_stream_count, sensor_chars.max_raw_streams); in IsStreamCombinationSupported()
315 if (processed_stream_count > sensor_chars.max_processed_streams) { in IsStreamCombinationSupported()
318 sensor_chars.max_processed_streams); in IsStreamCombinationSupported()
322 if (stalling_stream_count > sensor_chars.max_stalling_streams) { in IsStreamCombinationSupported()
325 sensor_chars.max_stalling_streams); in IsStreamCombinationSupported()
329 if (input_stream_count > sensor_chars.max_input_streams) { in IsStreamCombinationSupported()
331 __FUNCTION__, input_stream_count, sensor_chars.max_input_streams); in IsStreamCombinationSupported()
DEmulatedCameraProviderHWLImpl.cpp290 SensorCharacteristics sensor_chars; in IsConcurrentStreamCombinationSupported() local
292 (static_metadata_[config.camera_id]).get(), &sensor_chars); in IsConcurrentStreamCombinationSupported()
300 sensor_chars)) { in IsConcurrentStreamCombinationSupported()
DEmulatedSensor.h170 const SensorCharacteristics& sensor_chars);