From patchwork Wed Aug 25 10:29:33 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kieran Bingham X-Patchwork-Id: 13484 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 06013BD87D for ; Wed, 25 Aug 2021 10:29:45 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 93C766890C; Wed, 25 Aug 2021 12:29:43 +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="Y/48r2fS"; dkim-atps=neutral Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id EEEEA60504 for ; Wed, 25 Aug 2021 12:29:41 +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 9D5686EE; Wed, 25 Aug 2021 12:29:41 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1629887381; bh=3oKST/urWWgQbReo2GFUkIWeAC4wwOMgBkN8KLOj5V0=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=Y/48r2fStUFgEHoUCGRjuXpvtPlnZd/bhASTrcSvBJ5SYw/Kpk3pqbNNxxD68br3e 8J6mQWxHah+420UWSk0paXbTl2vidAPZOkJGtBMmhBPKi+sW+L+jLBDPr1s5ntPaIY B35mNZWO8GeucHBIt9K65DJixReJfZUF0vIpJVDk= From: Kieran Bingham To: libcamera devel Date: Wed, 25 Aug 2021 11:29:33 +0100 Message-Id: <20210825102937.3740405-2-kieran.bingham@ideasonboard.com> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20210825102937.3740405-1-kieran.bingham@ideasonboard.com> References: <20210825102937.3740405-1-kieran.bingham@ideasonboard.com> MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH 1/5] Documentation: application-developer: Remove irrelevant TODO 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" This TODO has no real meaning, and isn't an action. Remove it. Signed-off-by: Kieran Bingham Reviewed-by: Laurent Pinchart --- Documentation/guides/application-developer.rst | 2 -- 1 file changed, 2 deletions(-) diff --git a/Documentation/guides/application-developer.rst b/Documentation/guides/application-developer.rst index fb6a80a57eb7..b79241bd9317 100644 --- a/Documentation/guides/application-developer.rst +++ b/Documentation/guides/application-developer.rst @@ -7,8 +7,6 @@ This tutorial shows how to create a C++ application that uses libcamera to interface with a camera on a system, capture frames from it for 3 seconds, and write metadata about the frames to standard out. -.. TODO: Check how much of the example code runs before camera start etc? - Application skeleton --------------------