From patchwork Fri Aug 20 16:00:26 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jean-Michel Hautbois X-Patchwork-Id: 13421 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 8DBE5BD87D for ; Fri, 20 Aug 2021 16:00:36 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id AF1E0688C4; Fri, 20 Aug 2021 18:00:35 +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="IyAYMSru"; dkim-atps=neutral Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id A59ED6888E for ; Fri, 20 Aug 2021 18:00:33 +0200 (CEST) Received: from tatooine.ideasonboard.com (unknown [IPv6:2a01:e0a:169:7140:e43b:edb2:932:6b0a]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 3C17B8C8; Fri, 20 Aug 2021 18:00:33 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1629475233; bh=95tm/i3G0d2hdpDYfdx2FGHjWpnvG6vqg14MW9fii4M=; h=From:To:Cc:Subject:Date:From; b=IyAYMSrugbKePTPQPBf3Im8mKjwmBkAII8Ff8COVsXXMpSsOltuEhU45vA88edCbQ SzTD9905SYnO9O4kdL5VNmxbZJE0MNj8aKTj5FsjFQoT2HrcQp/Q5xtOjDp9yMxLaY LjQx3Pnzxv215XVJ9TEOkrjNkvljW5WnEtebwYBI= From: Jean-Michel Hautbois To: libcamera-devel@lists.libcamera.org Date: Fri, 20 Aug 2021 18:00:26 +0200 Message-Id: <20210820160028.104265-1-jeanmichel.hautbois@ideasonboard.com> X-Mailer: git-send-email 2.30.2 MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH v3 0/2] Remove local storage of the grid in algorithms 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" As suggested before, the aeGrid_ and awbGrid_ are no me needed as we can get the grid configuration directly from IPASessionConfiguration. Remove those local storage for both awb and agc. Jean-Michel Hautbois (2): ipa: ipu3: agc: remove local storage of the grid ipa: ipu3: awb: remove local storage of the grid src/ipa/ipu3/algorithms/agc.cpp | 28 ++++++++++++++-------------- src/ipa/ipu3/algorithms/agc.h | 5 ++--- src/ipa/ipu3/algorithms/awb.cpp | 26 ++++++++++++++------------ src/ipa/ipu3/algorithms/awb.h | 8 ++++---- 4 files changed, 34 insertions(+), 33 deletions(-)