From patchwork Fri Jul 1 15:47:00 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jacopo Mondi X-Patchwork-Id: 16518 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 0140DBD808 for ; Fri, 1 Jul 2022 15:47:18 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 9E3D565657; Fri, 1 Jul 2022 17:47:17 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=libcamera.org; s=mail; t=1656690437; bh=UGJ+gdTck/v0stuoI6Gwao0fARqas09Qcb74vekgk2c=; h=To:Date:In-Reply-To:References:Subject:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To: From; b=rzr0CVv+4ql0Vzm553KqwfHEK/gjbDsET+ZBHXbyoixSt0UY3y2rriZOdaXXSrUg3 ZLwMtcqcWhhyzSwY5WIImxy5oxzTXC0eXg9o/HmWkpjtQyuO5vKy58r3EsZ3kdqF8o PJyyAlLGb5eJ1ZGt1PPv8xrofzHUKE2tUwu2o4n5fYsurCvNTBh+xCF4CSUCWOI73x sfvdKvnCJrFqUmEWzl5o9pLdhaKRa1vCA9JU//O3WUtQl9UlVuXuM3zCGoIWINw1X0 9bMiuAQ4/COvBuS+FJntapNvjEH7wpr6za5AVU6y+lqdM57Gm4Crgn0mrcs+YlVOCy YMvQiwFGd/25g== Received: from relay4-d.mail.gandi.net (relay4-d.mail.gandi.net [IPv6:2001:4b98:dc4:8::224]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 4E7CD65659 for ; Fri, 1 Jul 2022 17:47:13 +0200 (CEST) Received: (Authenticated sender: jacopo@jmondi.org) by mail.gandi.net (Postfix) with ESMTPSA id A304DE0004; Fri, 1 Jul 2022 15:47:12 +0000 (UTC) To: libcamera-devel@lists.libcamera.org Date: Fri, 1 Jul 2022 17:47:00 +0200 Message-Id: <20220701154701.354052-8-jacopo@jmondi.org> X-Mailer: git-send-email 2.36.1 In-Reply-To: <20220701154701.354052-1-jacopo@jmondi.org> References: <20220518134728.777709-2-paul.elder@ideasonboard.com> <20220701154701.354052-1-jacopo@jmondi.org> MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH 8/9] fixup: Minor changes in ExposureTimeMode 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: Jacopo Mondi via libcamera-devel From: Jacopo Mondi Reply-To: Jacopo Mondi Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" slightly modify the ExposureTime modes description. Signed-off-by: Jacopo Mondi Acked-by: Paul Elder --- src/libcamera/control_ids.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/libcamera/control_ids.yaml b/src/libcamera/control_ids.yaml index 225377cf9e76..1f22b9b35036 100644 --- a/src/libcamera/control_ids.yaml +++ b/src/libcamera/control_ids.yaml @@ -260,20 +260,20 @@ controls: value: 0 description: | The exposure time will be calculated automatically and set by the - AE algorithm. If ExposureTime is set while this mode is active, it - will be ignored, and it will also not be retained. + AE algorithm. + + If ExposureTime is set while this mode is active, it will be + ignored, and it will also not be retained. - name: ExposureTimeModeManual value: 1 description: | - The exposure time will not be updated by the AE algorithm. It will - come from the last calculated value when the mode was Auto, or from - the value specified in ExposureTime. + The exposure time will not be updated by the AE algorithm. When transitioning from Auto to Manual mode, the last computed exposure value is used until a new value is specified through the ExposureTime control. If an ExposureTime value is specified in the same request where the ExposureTimeMode is changed from Auto to - Manual, the provided ExposureTime is applied. + Manual, the provided ExposureTime is applied immediately. - AnalogueGain: type: float