Cover Letter Detail
Show a cover letter.
GET /api/1.1/covers/668/?format=api
{ "id": 668, "url": "https://patchwork.libcamera.org/api/1.1/covers/668/?format=api", "web_url": "https://patchwork.libcamera.org/cover/668/", "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": "<20190228200151.2948-1-jacopo@jmondi.org>", "date": "2019-02-28T20:01:42", "name": "[libcamera-devel,v4,0/8] v4l2_(sub)dev: improvements and tests", "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/668/mbox/", "series": [ { "id": 198, "url": "https://patchwork.libcamera.org/api/1.1/series/198/?format=api", "web_url": "https://patchwork.libcamera.org/project/libcamera/list/?series=198", "date": "2019-02-28T20:01:42", "name": "v4l2_(sub)dev: improvements and tests", "version": 4, "mbox": "https://patchwork.libcamera.org/series/198/mbox/" } ], "comments": "https://patchwork.libcamera.org/api/covers/668/comments/", "headers": { "Return-Path": "<jacopo@jmondi.org>", "Received": [ "from relay11.mail.gandi.net (relay11.mail.gandi.net\n\t[217.70.178.231])\n\tby lancelot.ideasonboard.com (Postfix) with ESMTPS id C6E87610B6\n\tfor <libcamera-devel@lists.libcamera.org>;\n\tThu, 28 Feb 2019 21:01:28 +0100 (CET)", "from uno.lan (2-224-242-101.ip172.fastwebnet.it [2.224.242.101])\n\t(Authenticated sender: jacopo@jmondi.org)\n\tby relay11.mail.gandi.net (Postfix) with ESMTPSA id 4FC6C100006;\n\tThu, 28 Feb 2019 20:01:28 +0000 (UTC)" ], "From": "Jacopo Mondi <jacopo@jmondi.org>", "To": "libcamera-devel@lists.libcamera.org", "Date": "Thu, 28 Feb 2019 21:01:42 +0100", "Message-Id": "<20190228200151.2948-1-jacopo@jmondi.org>", "X-Mailer": "git-send-email 2.20.1", "MIME-Version": "1.0", "Content-Transfer-Encoding": "8bit", "Subject": "[libcamera-devel] [PATCH v4 0/8] v4l2_(sub)dev: improvements and\n\ttests", "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": "Thu, 28 Feb 2019 20:01:28 -0000" }, "content": "One more round, one more (trivial) patch: 6/9\n\nMost of what is here is reviewed.\nParticular attention to format enumeration which has been reworked, and to\nMETA_CAPTURE support, on which I had one more comment on v3.\n\nThe rest should be smooth.\n\nThanks\n j\n\n\nJacopo Mondi (9):\n libcamera: v4l2_subdevice: Store media entity\n libcamera: v4l2_subdevice: Inherit from Loggable\n libcamera: v4l2_subdevice: Implement ENUM_FRAME_SIZES\n libcamera: v4l2_device: Add support for META_CAPTURE devices\n libcamera: v4l2_subdevice: Update crop/compose rectangle\n libcamera: v4l2_device: Expose the device node path\n test: v4l2_subdevice: Add format handling test\n test: v4l2_subdevice: Add ListFormat test\n test: v4l2_device: Add format handling test\n\n src/libcamera/geometry.cpp | 34 ++++++\n src/libcamera/include/geometry.h | 12 ++\n src/libcamera/include/v4l2_device.h | 5 +\n src/libcamera/include/v4l2_subdevice.h | 25 +++-\n src/libcamera/v4l2_device.cpp | 44 +++++---\n src/libcamera/v4l2_subdevice.cpp | 119 ++++++++++++++++++--\n test/meson.build | 1 +\n test/v4l2_device/formats.cpp | 53 +++++++++\n test/v4l2_device/meson.build | 1 +\n test/v4l2_subdevice/list_formats.cpp | 85 ++++++++++++++\n test/v4l2_subdevice/meson.build | 11 ++\n test/v4l2_subdevice/test_formats.cpp | 78 +++++++++++++\n test/v4l2_subdevice/v4l2_subdevice_test.cpp | 89 +++++++++++++++\n test/v4l2_subdevice/v4l2_subdevice_test.h | 36 ++++++\n 14 files changed, 563 insertions(+), 30 deletions(-)\n create mode 100644 test/v4l2_device/formats.cpp\n create mode 100644 test/v4l2_subdevice/list_formats.cpp\n create mode 100644 test/v4l2_subdevice/meson.build\n create mode 100644 test/v4l2_subdevice/test_formats.cpp\n create mode 100644 test/v4l2_subdevice/v4l2_subdevice_test.cpp\n create mode 100644 test/v4l2_subdevice/v4l2_subdevice_test.h\n\n--\n2.20.1" }