Searched refs:sensor_chars (Results 1 – 7 of 7) sorted by relevance
46 SensorCharacteristics* sensor_chars /*out*/) { in GetSensorCharacteristics() argument47 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 …]
48 SensorCharacteristics* sensor_chars /*out*/);
52 static ExifUtils* Create(SensorCharacteristics sensor_chars);
52 ExifUtilsImpl(SensorCharacteristics sensor_chars);295 ExifUtils* ExifUtils::Create(SensorCharacteristics sensor_chars) { in Create() argument296 return new ExifUtilsImpl(sensor_chars); in Create()302 ExifUtilsImpl::ExifUtilsImpl(SensorCharacteristics sensor_chars) in ExifUtilsImpl() argument306 sensor_chars_(sensor_chars) { in ExifUtilsImpl()
248 const SensorCharacteristics& sensor_chars) { in IsStreamCombinationSupported() argument262 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()
290 SensorCharacteristics sensor_chars; in IsConcurrentStreamCombinationSupported() local292 (static_metadata_[config.camera_id]).get(), &sensor_chars); in IsConcurrentStreamCombinationSupported()300 sensor_chars)) { in IsConcurrentStreamCombinationSupported()
170 const SensorCharacteristics& sensor_chars);