From patchwork Tue Aug 24 14:24:48 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kieran Bingham X-Patchwork-Id: 13460 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 760FFBD87D for ; Tue, 24 Aug 2021 14:24:58 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 3470E6890C; Tue, 24 Aug 2021 16:24:58 +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="o4JCQjj+"; dkim-atps=neutral Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id AD26E60505 for ; Tue, 24 Aug 2021 16:24:55 +0200 (CEST) Received: from Monstersaurus.local (cpc89244-aztw30-2-0-cust3082.18-1.cable.virginm.net [86.31.172.11]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 528E1BB0; Tue, 24 Aug 2021 16:24:55 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1629815095; bh=twq6yGjSB8kHCTaxcagHrXyuUDPduGOV7Sjn0uuA3xE=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=o4JCQjj+ddymsjRVBZpwidCeurOuZ3CtZdQVtgbf7j2+urDP7iIfF1LnHSRVNM/4a BqQWKM4bYKcX3Y7EOdUaJgZU2fF0/KsO0mVquSX9gl8+y8LIVC5REPqCni2SzmfYCQ 3hooEg0C8MoXzFxxj7C9/nygJSFmWws4uSRQXdl0= From: Kieran Bingham To: libcamera devel Date: Tue, 24 Aug 2021 15:24:48 +0100 Message-Id: <20210824142450.3157833-3-kieran.bingham@ideasonboard.com> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20210824142450.3157833-1-kieran.bingham@ideasonboard.com> References: <20210824142450.3157833-1-kieran.bingham@ideasonboard.com> MIME-Version: 1.0 Subject: [libcamera-devel] [SimpleCam PATCH 2/4] simple-cam: Improve documentation of validate/configure 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" The validation and configure phase has a couple of grammatical errors. Fix them and reflow the text accordingly. Signed-off-by: Kieran Bingham Reviewed-by: Jacopo Mondi Reviewed-by: Laurent Pinchart --- simple-cam.cpp | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/simple-cam.cpp b/simple-cam.cpp index 5c16db67700c..2e646a5485c9 100644 --- a/simple-cam.cpp +++ b/simple-cam.cpp @@ -255,16 +255,17 @@ int main() #endif /* - * Validating a CameraConfiguration -before- applying it adjust it - * to a valid configuration as closest as possible to the requested one. + * Validating a CameraConfiguration -before- applying it will adjust it + * to a valid configuration which is as close as possible to the one + * requested. */ config->validate(); std::cout << "Validated viewfinder configuration is: " << streamConfig.toString() << std::endl; /* - * Once we have a validate configuration, we can apply it - * to the Camera. + * Once we have a validated configuration, we can apply it to the + * Camera. */ camera->configure(config.get());