mirror of
https://git.libcamera.org/libcamera/libcamera.git
synced 2025-07-19 18:35:07 +03:00
libcamera: controls: Return control by value
The ControlList::get() and ControlValue::get() methods return the control value by reference. This requires the ControlValue class to store the control value in the same form as the one returned by those functions. For the array controls that are soon to be added, the ControlValue class would need to store a span<> instance in addition to the control value itself, which would increase the required storage space. Prepare for support of array controls by returning from get() by value. As all control values are 8 bytes at most, this doesn't affect efficiency negatively. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
This commit is contained in:
parent
cd04b9a96c
commit
5eaf4fed19
2 changed files with 9 additions and 11 deletions
|
@ -42,7 +42,7 @@ public:
|
|||
}
|
||||
|
||||
template<typename T>
|
||||
const T &get() const;
|
||||
T get() const;
|
||||
template<typename T>
|
||||
void set(const T &value);
|
||||
|
||||
|
@ -212,13 +212,11 @@ public:
|
|||
bool contains(unsigned int id) const;
|
||||
|
||||
template<typename T>
|
||||
const T &get(const Control<T> &ctrl) const
|
||||
T get(const Control<T> &ctrl) const
|
||||
{
|
||||
const ControlValue *val = find(ctrl.id());
|
||||
if (!val) {
|
||||
static T t(0);
|
||||
return t;
|
||||
}
|
||||
if (!val)
|
||||
return T{};
|
||||
|
||||
return val->get<T>();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue