From patchwork Mon Jul 4 13:37:51 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kieran Bingham X-Patchwork-Id: 16529 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 CD017BE173 for ; Mon, 4 Jul 2022 13:37:56 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 120106564E; Mon, 4 Jul 2022 15:37:56 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=libcamera.org; s=mail; t=1656941876; bh=OkEQFijXyOmcLQ9BgepeJ7LuywuhYCLuPGZQXSf3CVA=; h=To:Date:Subject:List-Id:List-Unsubscribe:List-Archive:List-Post: List-Help:List-Subscribe:From:Reply-To:From; b=U7TLq6hCJsQ5PEE3DGIIiHaaAK6HbuiUyDpXfnDwivHp0LsZWjnqEnqV+A2qzBAWu sCKAGgHpPFvBzbHX2cgPr5fSPBcKGxU8+adT/c8RTDqM5hL9OWg4A31EN0I3WuE2Sk /WyLIUPt37RacJbvn/tYZIVTGEWNPMF820LIs2yB3NiySYWGfcZtN2Ue4MIzXfz8on evALBcNAtZAUxDetpNf6qBvy1Rizhctr6H5y8aaoVqKtm7n2CLDQ3j3geu2D+SkDZu XNSYyOK3Tx+dy4RZbUCKXBhUEGjENxOVRR5zPlGYZn9JBtoCDBr30EREbOkgs1YeuR 9EVuPQSRdyykA== Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id DDB5061FB1 for ; Mon, 4 Jul 2022 15:37:54 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="OdQmXsld"; dkim-atps=neutral Received: from Monstersaurus.ksquared.org.uk.beta.tailscale.net (cpc89244-aztw30-2-0-cust3082.18-1.cable.virginm.net [86.31.172.11]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 45C15802; Mon, 4 Jul 2022 15:37:54 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1656941874; bh=OkEQFijXyOmcLQ9BgepeJ7LuywuhYCLuPGZQXSf3CVA=; h=From:To:Cc:Subject:Date:From; b=OdQmXsldDXvzoOOLkQC1qwn+3cofVPJHkMXQrjoo1lkfFOCxmqDIoyKDgIIA4RzxG IAG/+hWYKGK5CRrDqhiZFAPFPijG6CxfBRTVrRUPeX/O+ILNqfgvgN/iUg3hTCyVIn D1IvC+tNoZjubren/CVxFcYQx1gVarpkv4OaC+CU= To: libcamera devel Date: Mon, 4 Jul 2022 14:37:51 +0100 Message-Id: <20220704133751.1582959-1-kieran.bingham@ideasonboard.com> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH] delayed_controls: Remove reduandant firstSequence_ 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: , X-Patchwork-Original-From: Kieran Bingham via libcamera-devel From: Kieran Bingham Reply-To: Kieran Bingham Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" The DelayedControls implementation tracked the sequence numbers to determine the offset if a device did not commence with a sequence number of 0. This guarantee is now handled by the V4L2VideoDevice. Remove the firstSequence_ offset and the corresponding running_ flag which was used to track setting firstSequence_ from the DelayedControls. Signed-off-by: Kieran Bingham Reviewed-by: Jacopo Mondi Reviewed-by: Laurent Pinchart --- This will conflict with Jacopo's series, but is still applicable conceptually, whichever gets to go first. include/libcamera/internal/delayed_controls.h | 3 --- src/libcamera/delayed_controls.cpp | 12 ++---------- 2 files changed, 2 insertions(+), 13 deletions(-) diff --git a/include/libcamera/internal/delayed_controls.h b/include/libcamera/internal/delayed_controls.h index 703fdb66bc27..f560c823d4e9 100644 --- a/include/libcamera/internal/delayed_controls.h +++ b/include/libcamera/internal/delayed_controls.h @@ -72,9 +72,6 @@ private: std::unordered_map controlParams_; unsigned int maxDelay_; - bool running_; - uint32_t firstSequence_; - uint32_t queueCount_; uint32_t writeCount_; /* \todo Evaluate if we should index on ControlId * or unsigned int */ diff --git a/src/libcamera/delayed_controls.cpp b/src/libcamera/delayed_controls.cpp index 9667187e9a4a..527c319113ac 100644 --- a/src/libcamera/delayed_controls.cpp +++ b/src/libcamera/delayed_controls.cpp @@ -115,8 +115,6 @@ DelayedControls::DelayedControls(V4L2Device *device, */ void DelayedControls::reset() { - running_ = false; - firstSequence_ = 0; queueCount_ = 1; writeCount_ = 0; @@ -204,8 +202,7 @@ bool DelayedControls::push(const ControlList &controls) */ ControlList DelayedControls::get(uint32_t sequence) { - uint32_t adjustedSeq = sequence - firstSequence_; - unsigned int index = std::max(0, adjustedSeq - maxDelay_); + unsigned int index = std::max(0, sequence - maxDelay_); ControlList out(device_->controls()); for (const auto &ctrl : values_) { @@ -236,11 +233,6 @@ void DelayedControls::applyControls(uint32_t sequence) { LOG(DelayedControls, Debug) << "frame " << sequence << " started"; - if (!running_) { - firstSequence_ = sequence; - running_ = true; - } - /* * Create control list peeking ahead in the value queue to ensure * values are set in time to satisfy the sensor delay. @@ -279,7 +271,7 @@ void DelayedControls::applyControls(uint32_t sequence) } } - writeCount_ = sequence - firstSequence_ + 1; + writeCount_ = sequence + 1; while (writeCount_ > queueCount_) { LOG(DelayedControls, Debug)