From patchwork Tue Aug 24 14:24:50 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kieran Bingham X-Patchwork-Id: 13462 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 246D6BD87D for ; Tue, 24 Aug 2021 14:25:00 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 8371868918; Tue, 24 Aug 2021 16:24:59 +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="NZQ1HKpV"; dkim-atps=neutral Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 4D914688A3 for ; Tue, 24 Aug 2021 16:24:56 +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 C3710BB0; 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=uLtkGzOI08JxEDGOv0PwhjLADxuBplDdrHWLOBDq2MI=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=NZQ1HKpVgBCLWsrrl+XEBJ7h82jY5X90bFq1hkWGZlwrWlloY+VF84g5MyQsCaT26 QaBuVcDi/HJm6XdR2peXibZVRACY/hPl9ECYCmkeAoRt0XleDRMBGUDRMzeqYAd5dE JmttfY3UPRfXFRD6C2m1yySGVVsqGp79X8djEjb0= From: Kieran Bingham To: libcamera devel Date: Tue, 24 Aug 2021 15:24:50 +0100 Message-Id: <20210824142450.3157833-5-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 4/4] simple-cam: Correct the capitalisation of 'libcamera' 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" Even when used at the beginning of a sentence, the 'libcamera' name always starts with a lower case 'l'. Fix the incorrect usages of the name. Signed-off-by: Kieran Bingham Reviewed-by: Jacopo Mondi Reviewed-by: Laurent Pinchart --- simple-cam.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/simple-cam.cpp b/simple-cam.cpp index 47c5dc9987bc..7ba423df9089 100644 --- a/simple-cam.cpp +++ b/simple-cam.cpp @@ -301,7 +301,7 @@ int main() * -------------------------------------------------------------------- * Frame Capture * - * Libcamera frames capture model is based on the 'Request' concept. + * libcamera frames capture model is based on the 'Request' concept. * For each frame a Request has to be queued to the Camera. * * A Request refers to (at least one) Stream for which a Buffer that @@ -348,7 +348,7 @@ int main() * -------------------------------------------------------------------- * Signal&Slots * - * Libcamera uses a Signal&Slot based system to connect events to + * libcamera uses a Signal&Slot based system to connect events to * callback operations meant to handle them, inspired by the QT graphic * toolkit. * @@ -398,12 +398,13 @@ int main() int ret = loop.exec(); std::cout << "Capture ran for " << TIMEOUT_SEC << " seconds and " << "stopped with exit status: " << ret << std::endl; + /* * -------------------------------------------------------------------- * Clean Up * * Stop the Camera, release resources and stop the CameraManager. - * Libcamera has now released all resources it owned. + * libcamera has now released all resources it owned. */ camera->stop(); allocator->free(stream);