From patchwork Sun Jun 28 23:19:26 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 8485 Return-Path: X-Original-To: parsemail@patchwork.libcamera.org Delivered-To: parsemail@patchwork.libcamera.org Received: from lancelot.ideasonboard.com (lancelot.ideasonboard.com [92.243.16.209]) by patchwork.libcamera.org (Postfix) with ESMTPS id 12AB6C2E66 for ; Sun, 28 Jun 2020 23:19:46 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id C789660AF5; Mon, 29 Jun 2020 01:19:43 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="jn3/8GdY"; dkim-atps=neutral Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 97CFD609C7 for ; Mon, 29 Jun 2020 01:19:41 +0200 (CEST) Received: from pendragon.bb.dnainternet.fi (81-175-216-236.bb.dnainternet.fi [81.175.216.236]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 1E80E556; Mon, 29 Jun 2020 01:19:41 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1593386381; bh=flOhzyMpDQg8Bjhw/dwaBl4oLmvP5c+29sCfnu0Z970=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=jn3/8GdYN+NVkDuQOJ0fn5m/XLS7MfCu/bFUlpCnk/8m39TIdoNd7GdTSD67LaJjh fKwpcseIXihPGyDUZYEfJc5nIbFmZn687EWRe7IqpJvH5n/CddjlLlo+cMSv7ylJVK QgPYK2HkExPKXrL9vjBBblVqUcndGn5E8uGi97gI= From: Laurent Pinchart To: libcamera-devel@lists.libcamera.org Date: Mon, 29 Jun 2020 02:19:26 +0300 Message-Id: <20200628231934.29025-2-laurent.pinchart@ideasonboard.com> X-Mailer: git-send-email 2.27.0 In-Reply-To: <20200628231934.29025-1-laurent.pinchart@ideasonboard.com> References: <20200628231934.29025-1-laurent.pinchart@ideasonboard.com> MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH v1 1/9] libcamera: ipa: Document the parameters of the IPA C configure function X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" The parameters to the configure() function part of the ipa_context_ops are not documented. Fix that. Signed-off-by: Laurent Pinchart Reviewed-by: Niklas Söderlund Reviewed-by: Jacopo Mondi --- src/libcamera/ipa_interface.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/libcamera/ipa_interface.cpp b/src/libcamera/ipa_interface.cpp index 69835e63ab46..ebe47e1233a5 100644 --- a/src/libcamera/ipa_interface.cpp +++ b/src/libcamera/ipa_interface.cpp @@ -340,6 +340,11 @@ * \var ipa_context_ops::configure * \brief Configure the IPA stream and sensor settings * \param[in] ctx The IPA context + * \param[in] sensor_info Camera sensor information + * \param[in] streams Configuration of all active streams + * \param[in] num_streams The number of entries in the \a streams array + * \param[in] maps Controls provided by the pipeline entities + * \param[in] num_maps The number of entries in the \a maps array * * \sa libcamera::IPAInterface::configure() */