From patchwork Fri Aug 20 12:11:47 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: 13415 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 76458BD87D for ; Fri, 20 Aug 2021 12:11:53 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 3DCFE688A5; Fri, 20 Aug 2021 14:11:53 +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="aLXnmGJc"; dkim-atps=neutral Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 584F56025E for ; Fri, 20 Aug 2021 14:11:52 +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 0541A8C8; Fri, 20 Aug 2021 14:11:52 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1629461512; bh=Yywgkc+q6ybRTmojIk00e3PEPNpRShLUNrtBiaVFsJY=; h=From:To:Cc:Subject:Date:From; b=aLXnmGJcHO2lbCPwFtNziPjWJwxW0s8dJHuRCxdq4+b0r9L83Htc5YoLIXSqazQzZ jwx/ylu2viMolRYrPCqNQiCw17eJEvv7Pd5NuVgzCUad4gtngxTdC2yLkLK502v7nQ G26AlPtCREV4z8nJ77MybmGdvBjpU1lwh7BZcZio= From: Jean-Michel Hautbois To: libcamera-devel@lists.libcamera.org Date: Fri, 20 Aug 2021 14:11:47 +0200 Message-Id: <20210820121149.85859-1-jeanmichel.hautbois@ideasonboard.com> X-Mailer: git-send-email 2.30.2 MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH v1 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 | 29 +++++++++++++++-------------- src/ipa/ipu3/algorithms/agc.h | 5 ++--- src/ipa/ipu3/algorithms/awb.cpp | 29 ++++++++++++++++------------- src/ipa/ipu3/algorithms/awb.h | 8 ++++---- 4 files changed, 37 insertions(+), 34 deletions(-)