From patchwork Tue Aug 24 14:24:49 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kieran Bingham X-Patchwork-Id: 13461 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 51589C3241 for ; Tue, 24 Aug 2021 14:24:59 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id A45E568915; 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="mu6uTAK2"; dkim-atps=neutral Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [IPv6:2001:4b98:dc2:55:216:3eff:fef7:d647]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 0B7CC688AC 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 8A5E82A5; 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=SXqO+Ipt5H3+sDUt8BwZBIa/fGhEht3o/pU33f5A9u4=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=mu6uTAK2HQKKheBHUieYKe3l2QhgrGH1YHzjNjGo7YKySc7u+c6X+FNabnukjkXCX yheESYP/yu9rwGec0Fw6nz+v6G1BxDzajbroJ0pB6Yed8K15jnegEbesX6P/AFFDXw TCqZAnA9Hh/xtKnB/xGB3V64qRXwwlYChqa0H/+Y= From: Kieran Bingham To: libcamera devel Date: Tue, 24 Aug 2021 15:24:49 +0100 Message-Id: <20210824142450.3157833-4-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 3/4] simple-cam: Fix the Buffer Allocation guidance 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 Buffer Allocation notes contains a TODO. Improve the notes regarding the FrameBufferAllocation and remove the todo. Signed-off-by: Kieran Bingham Reviewed-by: Jacopo Mondi Reviewed-by: Laurent Pinchart --- simple-cam.cpp | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/simple-cam.cpp b/simple-cam.cpp index 2e646a5485c9..47c5dc9987bc 100644 --- a/simple-cam.cpp +++ b/simple-cam.cpp @@ -274,10 +274,16 @@ int main() * Buffer Allocation * * Now that a camera has been configured, it knows all about its - * Streams sizes and formats, so we now have to ask it to reserve - * memory for all of them. + * Streams sizes and formats. We need to provide buffers to store + * captured images in. An application might choose to provide buffers + * externally, for instance from a display driver which will render the + * captured images, however libcamera can also provide buffers from a + * configured camera. + * + * To request buffers from libcamera, we use the FrameBufferAllocator, + * and reference the (configured) camera for which we wish to allocate + * buffers for. */ - /* TODO: Update the comment here too */ FrameBufferAllocator *allocator = new FrameBufferAllocator(camera); for (StreamConfiguration &cfg : *config) {