Show a cover letter.

GET /api/1.1/covers/11447/?format=api
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "id": 11447,
    "url": "https://patchwork.libcamera.org/api/1.1/covers/11447/?format=api",
    "web_url": "https://patchwork.libcamera.org/cover/11447/",
    "project": {
        "id": 1,
        "url": "https://patchwork.libcamera.org/api/1.1/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-1-jacopo@jmondi.org>",
    "date": "2021-03-02T14:18:33",
    "name": "[libcamera-devel,v4,00/11] android: Supports memory backends",
    "submitter": {
        "id": 3,
        "url": "https://patchwork.libcamera.org/api/1.1/people/3/?format=api",
        "name": "Jacopo Mondi",
        "email": "jacopo@jmondi.org"
    },
    "mbox": "https://patchwork.libcamera.org/cover/11447/mbox/",
    "series": [
        {
            "id": 1740,
            "url": "https://patchwork.libcamera.org/api/1.1/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/covers/11447/comments/",
    "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 1472DBD808\n\tfor <parsemail@patchwork.libcamera.org>;\n\tTue,  2 Mar 2021 14:18:22 +0000 (UTC)",
            "from lancelot.ideasonboard.com (localhost [IPv6:::1])\n\tby lancelot.ideasonboard.com (Postfix) with ESMTP id A7C4E68A98;\n\tTue,  2 Mar 2021 15:18:21 +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 A8DBF68A7E\n\tfor <libcamera-devel@lists.libcamera.org>;\n\tTue,  2 Mar 2021 15:18:19 +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 38BBE200003;\n\tTue,  2 Mar 2021 14:18:17 +0000 (UTC)"
        ],
        "From": "Jacopo Mondi <jacopo@jmondi.org>",
        "To": "libcamera-devel@lists.libcamera.org",
        "Date": "Tue,  2 Mar 2021 15:18:33 +0100",
        "Message-Id": "<20210302141844.126634-1-jacopo@jmondi.org>",
        "X-Mailer": "git-send-email 2.30.0",
        "MIME-Version": "1.0",
        "Subject": "[libcamera-devel] [PATCH v4 00/11] android: Supports memory backends",
        "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": "Fix patch [8/11] which introduces CameraBuffer::jpegBufferSize() and\nuse it in [9/11]\n\nThe rest of the series stays the same as v3.\n\nThanks\n   j\n\nJacopo Mondi (11):\n  meson: options: Add option to select the Android platform\n  android: Introduce CameraBuffer interface\n  android: camera_buffer: Drop 'const' from buffer_handle_t\n  android: camera_device: Rename buffer fields\n  android: Move buffer mapping to CameraStream\n  android: camera_buffer: Implement libcamera::Extensible\n  android: post_processor: Use CameraBuffer API\n  android: camera_buffer: Add method to get the JPEG blob size\n  android: jpeg: Use CameraBuffer::jpegBufferSize()\n  android: mm: Provide helper macro for PIMPL\n  android: Introduce Chromium OS buffer manager\n\n meson_options.txt                        |   6 ++\n src/android/camera_buffer.h              |  66 ++++++++++++\n src/android/camera_device.cpp            |  51 +--------\n src/android/camera_device.h              |   6 --\n src/android/camera_stream.cpp            |  16 ++-\n src/android/camera_stream.h              |   2 +-\n src/android/jpeg/post_processor_jpeg.cpp |  25 ++---\n src/android/jpeg/post_processor_jpeg.h   |   2 +-\n src/android/meson.build                  |   2 +\n src/android/mm/cros_camera_buffer.cpp    | 128 +++++++++++++++++++++++\n src/android/mm/generic_camera_buffer.cpp |  88 ++++++++++++++++\n src/android/mm/meson.build               |   9 ++\n src/android/post_processor.h             |   4 +-\n src/android/yuv/post_processor_yuv.cpp   |  20 ++--\n src/android/yuv/post_processor_yuv.h     |   4 +-\n 15 files changed, 342 insertions(+), 87 deletions(-)\n create mode 100644 src/android/camera_buffer.h\n create mode 100644 src/android/mm/cros_camera_buffer.cpp\n create mode 100644 src/android/mm/generic_camera_buffer.cpp\n create mode 100644 src/android/mm/meson.build\n\n--\n2.30.0"
}