Cover Letter Detail
Show a cover letter.
GET /api/covers/316/?format=api
{ "id": 316, "url": "https://patchwork.libcamera.org/api/covers/316/?format=api", "web_url": "https://patchwork.libcamera.org/cover/316/", "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": "<20190121230640.8783-1-niklas.soderlund@ragnatech.se>", "date": "2019-01-21T23:06:36", "name": "[libcamera-devel,RFC,0/4] libcamera: add base for applications to configure cameras", "submitter": { "id": 5, "url": "https://patchwork.libcamera.org/api/people/5/?format=api", "name": "Niklas Söderlund", "email": "niklas.soderlund@ragnatech.se" }, "mbox": "https://patchwork.libcamera.org/cover/316/mbox/", "series": [ { "id": 109, "url": "https://patchwork.libcamera.org/api/series/109/?format=api", "web_url": "https://patchwork.libcamera.org/project/libcamera/list/?series=109", "date": "2019-01-21T23:06:36", "name": "libcamera: add base for applications to configure cameras", "version": 1, "mbox": "https://patchwork.libcamera.org/series/109/mbox/" } ], "comments": "https://patchwork.libcamera.org/api/covers/316/comments/", "headers": { "Return-Path": "<niklas.soderlund@ragnatech.se>", "Received": [ "from vsp-unauthed02.binero.net (vsp-unauthed02.binero.net\n\t[195.74.38.227])\n\tby lancelot.ideasonboard.com (Postfix) with ESMTPS id 321C860B1D\n\tfor <libcamera-devel@lists.libcamera.org>;\n\tTue, 22 Jan 2019 00:07:15 +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 461c4a3c-1dd1-11e9-874f-005056917f90;\n\tTue, 22 Jan 2019 00:07:11 +0100 (CET)" ], "X-Halon-ID": "461c4a3c-1dd1-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": "Tue, 22 Jan 2019 00:06:36 +0100", "Message-Id": "<20190121230640.8783-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] [RFC 0/4] libcamera: add base for applications to\n\tconfigure cameras", "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": "Mon, 21 Jan 2019 23:07:15 -0000" }, "content": "Hi,\n\nThis is a RFC series which aims to add a API to the Camera object to \nallow applications to configure a Camera, include multiple streams. The \nRFC takes a lot of shortcuts and more work is needed with the \nintegration with the PipelineHandler object to make it useful.\n\nI plan to keep working on this and hope to soon provide a example usage \nusing the cam utility.\n\nLaurent Pinchart (1):\n libcamera: camera: Add acquire() and release()\n\nNiklas Söderlund (3):\n libcamera: stream: add basic stream class\n libcamera: streamformat: add basic class for stream formats\n libcamera: camera: integrate streams and configuration\n\n include/libcamera/camera.h | 14 ++++++\n include/libcamera/libcamera.h | 2 +\n include/libcamera/meson.build | 2 +\n include/libcamera/stream.h | 25 ++++++++++\n include/libcamera/stream_format.h | 32 ++++++++++++\n src/libcamera/camera.cpp | 79 +++++++++++++++++++++++++++++\n src/libcamera/meson.build | 2 +\n src/libcamera/stream.cpp | 58 ++++++++++++++++++++++\n src/libcamera/stream_format.cpp | 82 +++++++++++++++++++++++++++++++\n 9 files changed, 296 insertions(+)\n create mode 100644 include/libcamera/stream.h\n create mode 100644 include/libcamera/stream_format.h\n create mode 100644 src/libcamera/stream.cpp\n create mode 100644 src/libcamera/stream_format.cpp" }