/* SPDX-License-Identifier: BSD-2-Clause */ /* * Copyright (C) 2021, Raspberry Pi Ltd * * device_status.cpp - device (image sensor) status */ #include "device_status.h" using namespace libcamera; /* for the Duration operator<< overload */ std::ostream &operator<<(std::ostream &out, const DeviceStatus &d) { out << "Exposure: " << d.shutterSpeed << " Frame length: " << d.frameLength << " Gain: " << d.analogueGain; if (d.aperture) out << " Aperture: " << *d.aperture; if (d.lensPosition) out << " Lens: " << *d.lensPosition; if (d.flashIntensity) out << " Flash: " << *d.flashIntensity; if (d.sensorTemperature) out << " Temperature: " << *d.sensorTemperature; return out; } bcamera/jmondi/libcamera.git' href='/libcamera/jmondi/libcamera.git/'>libcamera/jmondi/libcamera.git
Jacopo Mondi's clone of libcameragit repository hosting on libcamera.org
summaryrefslogtreecommitdiff
path: root/src/ipa/raspberrypi/cam_helper_imx290.cpp
blob: 7d6f5b549a736684fd80ad4dde75935c4012b6ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
generated by cgit v1.2.1 (git 2.18.0) at 2025-06-12 19:56:39 +0000