summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorNaushir Patuck <naush@raspberrypi.com>2023-06-05 10:14:05 +0100
committerLaurent Pinchart <laurent.pinchart@ideasonboard.com>2023-06-06 18:21:00 +0300
commitd66ff77759dc5aca41f4c575d7c962e97547406f (patch)
tree3f4fc5f180023adc5700acfeb3a82ae145f11e18 /include
parentbdba31cc0258dbfc71cb0fe68a9350189ef985e4 (diff)
pipeline: ipa: rpi: Return lens controls from ipa->configure()
In addition to sensor controls, return lens controls from IpaBase::configure() back to the pipeline handler. If there are lens controls present in the ControlList, action them in the pipeline handler as part of the configure routine. Signed-off-by: Naushir Patuck <naush@raspberrypi.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Jacopo Mondi <jacopo.mondi@ideasonboard.com> Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'include')
-rw-r--r--include/libcamera/ipa/raspberrypi.mojom3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/libcamera/ipa/raspberrypi.mojom b/include/libcamera/ipa/raspberrypi.mojom
index 1ea51f99..ab4c4e2e 100644
--- a/include/libcamera/ipa/raspberrypi.mojom
+++ b/include/libcamera/ipa/raspberrypi.mojom
@@ -47,7 +47,8 @@ struct ConfigParams {
struct ConfigResult {
float modeSensitivity;
libcamera.ControlInfoMap controlInfo;
- libcamera.ControlList controls;
+ libcamera.ControlList sensorControls;
+ libcamera.ControlList lensControls;
};
struct StartResult {