blob: a389c40dafed2e6b398a05bbf44d73213d433fd9 (
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
|
/* SPDX-License-Identifier: BSD-2-Clause */
/*
* Copyright (C) 2021, Raspberry Pi (Trading) Limited
*
* 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.shutter_speed
<< " Frame length: " << d.frame_length
<< " Gain: " << d.analogue_gain;
if (d.aperture)
out << " Aperture: " << *d.aperture;
if (d.lens_position)
out << " Lens: " << *d.lens_position;
if (d.flash_intensity)
out << " Flash: " << *d.flash_intensity;
if (d.sensor_temperature)
out << " Temperature: " << *d.sensor_temperature;
return out;
}
|