Show a cover letter.

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

{
    "id": 379,
    "url": "https://patchwork.libcamera.org/api/1.1/covers/379/?format=api",
    "web_url": "https://patchwork.libcamera.org/cover/379/",
    "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": "<20190125153340.2744-1-niklas.soderlund@ragnatech.se>",
    "date": "2019-01-25T15:33:33",
    "name": "[libcamera-devel,v2,0/7] libcamera: add basic support for Streams and format configuration",
    "submitter": {
        "id": 5,
        "url": "https://patchwork.libcamera.org/api/1.1/people/5/?format=api",
        "name": "Niklas Söderlund",
        "email": "niklas.soderlund@ragnatech.se"
    },
    "mbox": "https://patchwork.libcamera.org/cover/379/mbox/",
    "series": [
        {
            "id": 132,
            "url": "https://patchwork.libcamera.org/api/1.1/series/132/?format=api",
            "web_url": "https://patchwork.libcamera.org/project/libcamera/list/?series=132",
            "date": "2019-01-25T15:33:33",
            "name": "libcamera: add basic support for Streams and format configuration",
            "version": 2,
            "mbox": "https://patchwork.libcamera.org/series/132/mbox/"
        }
    ],
    "comments": "https://patchwork.libcamera.org/api/covers/379/comments/",
    "headers": {
        "Return-Path": "<niklas.soderlund@ragnatech.se>",
        "Received": [
            "from bin-mail-out-06.binero.net (bin-mail-out-06.binero.net\n\t[195.74.38.229])\n\tby lancelot.ideasonboard.com (Postfix) with ESMTPS id 3D3E760B1B\n\tfor <libcamera-devel@lists.libcamera.org>;\n\tFri, 25 Jan 2019 16:33:51 +0100 (CET)",
            "from bismarck.berto.se (unknown [89.233.230.99])\n\tby bin-vsp-out-02.atm.binero.net (Halon) with ESMTPA\n\tid 977459c6-20b6-11e9-874f-005056917f90;\n\tFri, 25 Jan 2019 16:33:49 +0100 (CET)"
        ],
        "X-Halon-ID": "977459c6-20b6-11e9-874f-005056917f90",
        "Authorized-sender": "niklas@soderlund.pp.se",
        "From": "=?utf-8?q?Niklas_S=C3=B6derlund?= <niklas.soderlund@ragnatech.se>",
        "To": "libcamera-devel@lists.libcamera.org",
        "Date": "Fri, 25 Jan 2019 16:33:33 +0100",
        "Message-Id": "<20190125153340.2744-1-niklas.soderlund@ragnatech.se>",
        "X-Mailer": "git-send-email 2.20.1",
        "MIME-Version": "1.0",
        "Content-Type": "text/plain; charset=UTF-8",
        "Content-Transfer-Encoding": "8bit",
        "Subject": "[libcamera-devel] [PATCH v2 0/7] libcamera: add basic support for\n\tStreams and format configuration",
        "X-BeenThere": "libcamera-devel@lists.libcamera.org",
        "X-Mailman-Version": "2.1.23",
        "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>",
        "X-List-Received-Date": "Fri, 25 Jan 2019 15:33:51 -0000"
    },
    "content": "Hi,\n\nThis series aims to add support of Streams to the Camera object. A\nStream is a single video stream origination from a video source,\nmultiple video streams might form the same Camera is possible as long as\nthey all originate from the same video source.\n\nPatch 8/8 which extends the cam utility depends on [1] while the rest of\nthe series have no dependencies.\n\n1. [PATCH] cam: Add event loop\n\nLaurent Pinchart (1):\n  libcamera: camera: Add acquire() and release()\n\nNiklas Söderlund (6):\n  libcamera: stream: add basic Stream class\n  libcamera: stream: add basic StreamConfiguration class\n  libcamera: pipelines: add method to retrieve streams\n  libcamera: pipelines: add method to configure streams\n  libcamera: camera: integrate streams and configuration\n  cam: add option to statically configure a pipeline\n\n include/libcamera/camera.h               |  12 +++\n include/libcamera/libcamera.h            |   1 +\n include/libcamera/meson.build            |   1 +\n include/libcamera/stream.h               |  45 ++++++++\n src/cam/main.cpp                         |  62 ++++++++---\n src/libcamera/camera.cpp                 |  83 ++++++++++++++-\n src/libcamera/include/pipeline_handler.h |   6 ++\n src/libcamera/meson.build                |   1 +\n src/libcamera/pipeline/ipu3/ipu3.cpp     |  33 ++++++\n src/libcamera/pipeline/uvcvideo.cpp      |  36 +++++++\n src/libcamera/pipeline/vimc.cpp          |  36 +++++++\n src/libcamera/pipeline_handler.cpp       |  30 ++++++\n src/libcamera/stream.cpp                 | 130 +++++++++++++++++++++++\n 13 files changed, 463 insertions(+), 13 deletions(-)\n create mode 100644 include/libcamera/stream.h\n create mode 100644 src/libcamera/stream.cpp"
}