From patchwork Thu Feb 10 11:39:47 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jean-Michel Hautbois X-Patchwork-Id: 15357 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 E3BEFBF415 for ; Thu, 10 Feb 2022 11:39:53 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 56251610E2; Thu, 10 Feb 2022 12:39:53 +0100 (CET) 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="iBGpPKh0"; dkim-atps=neutral Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [IPv6:2001:4b98:dc2:55:216:3eff:fef7:d647]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id E770560E70 for ; Thu, 10 Feb 2022 12:39:51 +0100 (CET) Received: from tatooine.ideasonboard.com (unknown [IPv6:2a01:e0a:169:7140:c44d:925d:d63:5b07]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 7FF5693; Thu, 10 Feb 2022 12:39:51 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1644493191; bh=NjN9SDn2Ngv3GvDO8FtPEuxvbTzZVebsyoFb6Btqh1c=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=iBGpPKh06yyvJ1/rUI0oppI49PH5FxYhosm/rx9nBqu9FqSTNJPek9jZPCtnf7PMH mOl/eowD8mhuK1eArl3jb5FiEllVYVjIg8ZDgGbzlJnaBYOJ/MDMMcfYxBA/WSDCEa 8A+1TKFRAt6q2a3zwHwa97bqnWbEyalow9tUnyFY= From: Jean-Michel Hautbois To: libcamera-devel@lists.libcamera.org Date: Thu, 10 Feb 2022 12:39:47 +0100 Message-Id: <20220210113947.1148359-1-jeanmichel.hautbois@ideasonboard.com> X-Mailer: git-send-email 2.32.0 In-Reply-To: <20220210113723.1147003-1-jeanmichel.hautbois@ideasonboard.com> References: <20220210113723.1147003-1-jeanmichel.hautbois@ideasonboard.com> MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH v2.2] fixup! ipa: ipu3: agc: Introduce lineDuration in IPASessionConfiguration 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" --- src/ipa/ipu3/ipu3.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/ipa/ipu3/ipu3.cpp b/src/ipa/ipu3/ipu3.cpp index 0a5b4621..b137c66c 100644 --- a/src/ipa/ipu3/ipu3.cpp +++ b/src/ipa/ipu3/ipu3.cpp @@ -295,7 +295,6 @@ int IPAIPU3::init(const IPASettings &settings, /* Clean context */ context_ = {}; context_.configuration.sensor.lineDuration = sensorInfo.lineLength * 1.0s / sensorInfo.pixelRate; - LOG(IPAIPU3, Error) << "Line duration in init(): " << context_.configuration.sensor.lineDuration; /* Construct our Algorithms */ algorithms_.push_back(std::make_unique()); @@ -461,7 +460,6 @@ int IPAIPU3::configure(const IPAConfigInfo &configInfo, calculateBdsGrid(configInfo.bdsOutputSize); context_.configuration.sensor.lineDuration = sensorInfo_.lineLength * 1.0s / sensorInfo_.pixelRate; - LOG(IPAIPU3, Error) << "Line duration in configure(): " << context_.configuration.sensor.lineDuration; /* Update the camera controls using the new sensor settings. */ updateControls(sensorInfo_, ctrls_, ipaControls);