diff options
author | Jean-Michel Hautbois <jeanmichel.hautbois@ideasonboard.com> | 2021-03-16 16:40:23 +0100 |
---|---|---|
committer | Jean-Michel Hautbois <jeanmichel.hautbois@ideasonboard.com> | 2021-03-17 15:13:50 +0100 |
commit | 79b48225adddafb6e1e5dcbe384107ba69b89454 (patch) | |
tree | 1145c9be9e28a2d2351a8fcbe814b90aa3f06344 /include | |
parent | 3f6785963d198e1801ecaa203e4075e18485edd0 (diff) |
libcamera: ipu3: Pass the BDS rectangle at IPA configure call
The IPU3 IPA will need the BDS configuration when the AWB/AGC algorithm
will be integrated.
In order to do that, the configure() interface needs to be modified.
Signed-off-by: Jean-Michel Hautbois <jeanmichel.hautbois@ideasonboard.com>
Reviewed-by: Jacopo Mondi <jacopo@jmondi.org>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/libcamera/ipa/ipu3.mojom | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/libcamera/ipa/ipu3.mojom b/include/libcamera/ipa/ipu3.mojom index 6ee11333..5d13e7ea 100644 --- a/include/libcamera/ipa/ipu3.mojom +++ b/include/libcamera/ipa/ipu3.mojom @@ -30,7 +30,7 @@ interface IPAIPU3Interface { start() => (int32 ret); stop(); - configure(map<uint32, ControlInfoMap> entityControls) => (); + configure(map<uint32, ControlInfoMap> entityControls, Size bdsOutputSize) => (); mapBuffers(array<IPABuffer> buffers); unmapBuffers(array<uint32> ids); |