From patchwork Sun Feb 23 23:03:53 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 22827 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 41CE4BDB13 for ; Sun, 23 Feb 2025 23:04:39 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id A648F686BC; Mon, 24 Feb 2025 00:04:37 +0100 (CET) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="ZD/h/icM"; dkim-atps=neutral Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 4EDA4686C3 for ; Mon, 24 Feb 2025 00:04:27 +0100 (CET) Received: from pendragon.ideasonboard.com (81-175-209-231.bb.dnainternet.fi [81.175.209.231]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 43A0D82A for ; Mon, 24 Feb 2025 00:03:01 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1740351781; bh=R6MZa8ChG9gltIIyFBXjsSWspkZFu8b1fIHLuIldtdw=; h=From:To:Subject:Date:In-Reply-To:References:From; b=ZD/h/icMQM2nfqrg+N2PVu2i2A5l4ygjBCIxuuT7fLaJeae8JIwqp08swtWpGLVNy CzdjCy68XLUDO3BdGYAYxVOeTlRZLzNk2CWAkhzFtGh9zJUzjQYgLFL66Sg/nAih95 4GMVgSwPI8PqEX47ByGsy/YaXyV08Ncsd+6J0BUE= From: Laurent Pinchart To: libcamera-devel@lists.libcamera.org Subject: [PATCH 05/15] libipa: awb: Replace reference to pipeline handle with IPA module Date: Mon, 24 Feb 2025 01:03:53 +0200 Message-ID: <20250223230403.1226-6-laurent.pinchart@ideasonboard.com> X-Mailer: git-send-email 2.45.3 In-Reply-To: <20250223230403.1226-1-laurent.pinchart@ideasonboard.com> References: <20250223230403.1226-1-laurent.pinchart@ideasonboard.com> MIME-Version: 1.0 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 AwbStats documentation incorrectly references pipeline handlers when it means IPA modules. Fix it. Signed-off-by: Laurent Pinchart Reviewed-by: Stefan Klug --- src/ipa/libipa/awb.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ipa/libipa/awb.cpp b/src/ipa/libipa/awb.cpp index b5aeb472f1f1..1c4f2330ec6c 100644 --- a/src/ipa/libipa/awb.cpp +++ b/src/ipa/libipa/awb.cpp @@ -43,8 +43,8 @@ namespace ipa { * \class AwbStats * \brief An abstraction class wrapping hardware-specific AWB statistics * - * Pipeline handlers using an AWB algorithm based on the AwbAlgorithm class need - * to implement this class to give the algorithm access to the hardware-specific + * IPA modules using an AWB algorithm based on the AwbAlgorithm class need to + * implement this class to give the algorithm access to the hardware-specific * statistics data. */