diff options
author | Jacopo Mondi <jacopo@jmondi.org> | 2020-10-20 17:43:15 +0200 |
---|---|---|
committer | Jacopo Mondi <jacopo@jmondi.org> | 2020-10-26 17:51:55 +0100 |
commit | ef7a07dd8a3634d9dd5d0383b86e3a1a69d7c768 (patch) | |
tree | abe64259152a9101d040511e99796cd65e6525d0 /include | |
parent | 7a307fa6472789b30a13567371714a0f0ee0ab76 (diff) |
libcamera: controls: Generate an array of valid values
For each Control that supports enumerated values generate an array
of ControlValue which contains the full list of valid values.
At the expense of a slight increase in memory occupation this change
allows the construction of the ControlInfo associated with a Control
from the values list, defaulting the minimum and maximum values
reported by the ControlInfo.
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Signed-off-by: Jacopo Mondi <jacopo@jmondi.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/libcamera/control_ids.h.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/libcamera/control_ids.h.in b/include/libcamera/control_ids.h.in index baadca83..7edeb6b6 100644 --- a/include/libcamera/control_ids.h.in +++ b/include/libcamera/control_ids.h.in @@ -10,6 +10,7 @@ #ifndef __LIBCAMERA_CONTROL_IDS_H__ #define __LIBCAMERA_CONTROL_IDS_H__ +#include <array> #include <stdint.h> #include <libcamera/controls.h> |