From 378f572e7f13d035c865f876c16659f162e2f48d Mon Sep 17 00:00:00 2001 From: Umang Jain Date: Mon, 24 May 2021 14:50:20 +0530 Subject: ipa: ipc: Rename CameraSensorInfo to IPACameraSensorInfo This matches the naming convention for IPA IPC. Signed-off-by: Umang Jain Acked-by: Paul Elder Reviewed-by: Jean-Michel Hautbois Reviewed-by: Kieran Bingham Reviewed-by: Laurent Pinchart Signed-off-by: Laurent Pinchart --- Documentation/guides/ipa.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'Documentation') diff --git a/Documentation/guides/ipa.rst b/Documentation/guides/ipa.rst index cbffbd9a..6195b2b7 100644 --- a/Documentation/guides/ipa.rst +++ b/Documentation/guides/ipa.rst @@ -74,11 +74,11 @@ serialization, any custom data containers must be defined with the mojo IDL. The following list of libcamera objects are supported in the interface definition, and may be used as function parameter types or struct field types: -- libcamera.CameraSensorInfo - libcamera.ControlInfoMap - libcamera.ControlList - libcamera.FileDescriptor - libcamera.IPABuffer +- libcamera.IPACameraSensorInfo - libcamera.IPASettings - libcamera.IPAStream - libcamera.Point @@ -208,7 +208,7 @@ The following is an example of a main interface definition: start() => (int32 ret); stop(); - configure(libcamera.CameraSensorInfo sensorInfo, + configure(libcamera.IPACameraSensorInfo sensorInfo, map streamConfig, map entityControls, ConfigInput ipaConfig) @@ -470,7 +470,7 @@ definition: .. code-block:: none - configure(libcamera.CameraSensorInfo sensorInfo, + configure(libcamera.IPACameraSensorInfo sensorInfo, uint32 exampleNumber, map streamConfig, map entityControls, @@ -481,7 +481,7 @@ We will need to implement a function with the following function signature: .. code-block:: C++ - int configure(const CameraSensorInfo &sensorInfo, + int configure(const IPACameraSensorInfo &sensorInfo, uint32_t exampleNumber, const std::map &streamConfig, const std::map &entityControls, -- cgit v1.2.1