Patch Detail
Show a patch.
GET /api/patches/11448/?format=api
{ "id": 11448, "url": "https://patchwork.libcamera.org/api/patches/11448/?format=api", "web_url": "https://patchwork.libcamera.org/patch/11448/", "project": { "id": 1, "url": "https://patchwork.libcamera.org/api/projects/1/?format=api", "name": "libcamera", "link_name": "libcamera", "list_id": "libcamera_core", "list_email": "libcamera-devel@lists.libcamera.org", "web_url": "", "scm_url": "", "webscm_url": "" }, "msgid": "<20210302141844.126634-2-jacopo@jmondi.org>", "date": "2021-03-02T14:18:34", "name": "[libcamera-devel,v4,01/11] meson: options: Add option to select the Android platform", "commit_ref": null, "pull_url": null, "state": "accepted", "archived": false, "hash": "220f7c5fbc6fc8174911fce5f3acc4d5ae566821", "submitter": { "id": 3, "url": "https://patchwork.libcamera.org/api/people/3/?format=api", "name": "Jacopo Mondi", "email": "jacopo@jmondi.org" }, "delegate": null, "mbox": "https://patchwork.libcamera.org/patch/11448/mbox/", "series": [ { "id": 1740, "url": "https://patchwork.libcamera.org/api/series/1740/?format=api", "web_url": "https://patchwork.libcamera.org/project/libcamera/list/?series=1740", "date": "2021-03-02T14:18:33", "name": "android: Supports memory backends", "version": 4, "mbox": "https://patchwork.libcamera.org/series/1740/mbox/" } ], "comments": "https://patchwork.libcamera.org/api/patches/11448/comments/", "check": "pending", "checks": "https://patchwork.libcamera.org/api/patches/11448/checks/", "tags": {}, "headers": { "Return-Path": "<libcamera-devel-bounces@lists.libcamera.org>", "X-Original-To": "parsemail@patchwork.libcamera.org", "Delivered-To": "parsemail@patchwork.libcamera.org", "Received": [ "from lancelot.ideasonboard.com (lancelot.ideasonboard.com\n\t[92.243.16.209])\n\tby patchwork.libcamera.org (Postfix) with ESMTPS id F0FD0BD808\n\tfor <parsemail@patchwork.libcamera.org>;\n\tTue, 2 Mar 2021 14:18:23 +0000 (UTC)", "from lancelot.ideasonboard.com (localhost [IPv6:::1])\n\tby lancelot.ideasonboard.com (Postfix) with ESMTP id CDE4C68A9C;\n\tTue, 2 Mar 2021 15:18:23 +0100 (CET)", "from relay12.mail.gandi.net (relay12.mail.gandi.net\n\t[217.70.178.232])\n\tby lancelot.ideasonboard.com (Postfix) with ESMTPS id 9586668A7E\n\tfor <libcamera-devel@lists.libcamera.org>;\n\tTue, 2 Mar 2021 15:18:21 +0100 (CET)", "from uno.LocalDomain (93-61-96-190.ip145.fastwebnet.it\n\t[93.61.96.190]) (Authenticated sender: jacopo@jmondi.org)\n\tby relay12.mail.gandi.net (Postfix) with ESMTPSA id D614320000E;\n\tTue, 2 Mar 2021 14:18:19 +0000 (UTC)" ], "From": "Jacopo Mondi <jacopo@jmondi.org>", "To": "libcamera-devel@lists.libcamera.org", "Date": "Tue, 2 Mar 2021 15:18:34 +0100", "Message-Id": "<20210302141844.126634-2-jacopo@jmondi.org>", "X-Mailer": "git-send-email 2.30.0", "In-Reply-To": "<20210302141844.126634-1-jacopo@jmondi.org>", "References": "<20210302141844.126634-1-jacopo@jmondi.org>", "MIME-Version": "1.0", "Subject": "[libcamera-devel] [PATCH v4 01/11] meson: options: Add option to\n\tselect the Android platform", "X-BeenThere": "libcamera-devel@lists.libcamera.org", "X-Mailman-Version": "2.1.29", "Precedence": "list", "List-Id": "<libcamera-devel.lists.libcamera.org>", "List-Unsubscribe": "<https://lists.libcamera.org/options/libcamera-devel>,\n\t<mailto:libcamera-devel-request@lists.libcamera.org?subject=unsubscribe>", "List-Archive": "<https://lists.libcamera.org/pipermail/libcamera-devel/>", "List-Post": "<mailto:libcamera-devel@lists.libcamera.org>", "List-Help": "<mailto:libcamera-devel-request@lists.libcamera.org?subject=help>", "List-Subscribe": "<https://lists.libcamera.org/listinfo/libcamera-devel>,\n\t<mailto:libcamera-devel-request@lists.libcamera.org?subject=subscribe>", "Cc": "Han-lin Chen <hanlinchen@chromium.org>,\n\tDaniel Hung-yu Wu <hywu@google.com>", "Content-Type": "text/plain; charset=\"us-ascii\"", "Content-Transfer-Encoding": "7bit", "Errors-To": "libcamera-devel-bounces@lists.libcamera.org", "Sender": "\"libcamera-devel\" <libcamera-devel-bounces@lists.libcamera.org>" }, "content": "The Android Camera3 HAL implementation requires platform\nspecific extensions, such as the selection of the memory backend\nto use and additional constraints depending on the target device.\n\nDefine a combo option to select which platform to target and\ndefine the currently existing implementation as 'generic'.\n\nReviewed-by: Paul Elder <paul.elder@ideasonboard.com>\nReviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>\nSigned-off-by: Jacopo Mondi <jacopo@jmondi.org>\n---\n meson_options.txt | 6 ++++++\n 1 file changed, 6 insertions(+)", "diff": "diff --git a/meson_options.txt b/meson_options.txt\nindex 53f2675e99e2..d840543b01f5 100644\n--- a/meson_options.txt\n+++ b/meson_options.txt\n@@ -5,6 +5,12 @@ option('android',\n value : 'disabled',\n description : 'Compile libcamera with Android Camera3 HAL interface')\n \n+option('android_platform',\n+ type : 'combo',\n+ choices : ['generic'],\n+ value : 'generic',\n+ description : 'Select the Android platform to compile for')\n+\n option('documentation',\n type : 'feature',\n description : 'Generate the project documentation')\n", "prefixes": [ "libcamera-devel", "v4", "01/11" ] }