diff options
author | Paul Elder <paul.elder@ideasonboard.com> | 2021-03-08 16:48:28 +0900 |
---|---|---|
committer | Paul Elder <paul.elder@ideasonboard.com> | 2021-03-09 11:49:23 +0900 |
commit | 45ebe9a209fc5bcce649b8b3f27f80131fc4e2c7 (patch) | |
tree | 43c5f252a81f6219bdfef96d3c184beef5077a0e /include | |
parent | 0612bef6013e31345dd9181869775fd704026f52 (diff) |
ipa: raspberrypi: Use direct return value for configure()
Now that we support returning int directly in addition to other output
parameters, improve the configure() function in the raspberrypi IPA
interface.
Signed-off-by: Paul Elder <paul.elder@ideasonboard.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/libcamera/ipa/raspberrypi.mojom | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/libcamera/ipa/raspberrypi.mojom b/include/libcamera/ipa/raspberrypi.mojom index c3d614b8..eb427697 100644 --- a/include/libcamera/ipa/raspberrypi.mojom +++ b/include/libcamera/ipa/raspberrypi.mojom @@ -77,7 +77,7 @@ interface IPARPiInterface { map<uint32, IPAStream> streamConfig, map<uint32, ControlInfoMap> entityControls, ConfigInput ipaConfig) - => (ConfigOutput results, int32 ret); + => (int32 ret, ConfigOutput results); /** * \fn mapBuffers() |