Cover Letter Detail
Show a cover letter.
GET /api/covers/3586/?format=api
{ "id": 3586, "url": "https://patchwork.libcamera.org/api/covers/3586/?format=api", "web_url": "https://patchwork.libcamera.org/cover/3586/", "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": "<20200428091713.341322-1-jacopo@jmondi.org>", "date": "2020-04-28T09:17:13", "name": "[libcamera-devel,v5,0/7] libcamera: Add CameraSensorInfo", "submitter": { "id": 3, "url": "https://patchwork.libcamera.org/api/people/3/?format=api", "name": "Jacopo Mondi", "email": "jacopo@jmondi.org" }, "mbox": "https://patchwork.libcamera.org/cover/3586/mbox/", "series": [ { "id": 842, "url": "https://patchwork.libcamera.org/api/series/842/?format=api", "web_url": "https://patchwork.libcamera.org/project/libcamera/list/?series=842", "date": "2020-04-28T09:17:13", "name": "libcamera: Add CameraSensorInfo", "version": 5, "mbox": "https://patchwork.libcamera.org/series/842/mbox/" } ], "comments": "https://patchwork.libcamera.org/api/covers/3586/comments/", "headers": { "Return-Path": "<jacopo@jmondi.org>", "Received": [ "from relay8-d.mail.gandi.net (relay8-d.mail.gandi.net\n\t[217.70.183.201])\n\tby lancelot.ideasonboard.com (Postfix) with ESMTPS id C62EB603F7\n\tfor <libcamera-devel@lists.libcamera.org>;\n\tTue, 28 Apr 2020 11:16:01 +0200 (CEST)", "from uno.homenet.telecomitalia.it (a-ur1-85.tin.it\n\t[212.216.150.148]) (Authenticated sender: jacopo@jmondi.org)\n\tby relay8-d.mail.gandi.net (Postfix) with ESMTPSA id 0937C1BF20A;\n\tTue, 28 Apr 2020 09:15:59 +0000 (UTC)" ], "X-Originating-IP": "212.216.150.148", "From": "Jacopo Mondi <jacopo@jmondi.org>", "To": "libcamera-devel@lists.libcamera.org", "Date": "Tue, 28 Apr 2020 11:17:13 +0200", "Message-Id": "<20200428091713.341322-1-jacopo@jmondi.org>", "X-Mailer": "git-send-email 2.26.1", "MIME-Version": "1.0", "Content-Type": "text/plain; charset=UTF-8", "Content-Transfer-Encoding": "8bit", "Subject": "[libcamera-devel] [PATCH v5 0/7] libcamera: Add CameraSensorInfo", "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>", "X-List-Received-Date": "Tue, 28 Apr 2020 09:16:01 -0000" }, "content": "Hello,\n I intend to push this new version, rebased on the fast moving recent master,\nas soon as the following patches on which this series depends on are merged:\n\nlibcamera: camera_sensor: Add model() function\nlibcamera: v4l2_device: Simplify usage of getControls()\nlibcamera: controls: Return ControlValue reference from ControlList::set()\nlibcamera: controls: Add rectangle and size control types\n\nLaurent, as you're tha author, this:\nlibcamera: controls: Return ControlValue reference from ControlList::set()\nis the only one that needs a small rework imho, all the rest is good to go.\n\nThanks\n j\n\nJacopo Mondi (7):\n libcamera: v4l2_subdevice: Expose setSelection()\n libcamera: v4l2_videodevice: Expose setSelection()\n libcamera: v4l2_subdevice: Implement getSelection()\n libcamera: camera_sensor: Define CameraSensorInfo\n libcamera: v4l2_subdevice: Add format information\n libcamera: camera_sensor: Add method to get sensor info\n libcamera: ipa: Add support for CameraSensorInfo\n\n include/ipa/ipa_interface.h | 27 ++-\n src/ipa/libipa/ipa_interface_wrapper.cpp | 19 +-\n src/ipa/libipa/ipa_interface_wrapper.h | 1 +\n src/ipa/rkisp1/rkisp1.cpp | 12 +-\n src/ipa/vimc/vimc.cpp | 3 +-\n src/libcamera/camera_sensor.cpp | 143 ++++++++++++++\n src/libcamera/include/camera_sensor.h | 14 ++\n src/libcamera/include/ipa_context_wrapper.h | 3 +-\n src/libcamera/include/v4l2_subdevice.h | 11 +-\n src/libcamera/include/v4l2_videodevice.h | 5 +-\n src/libcamera/ipa_context_wrapper.cpp | 23 ++-\n src/libcamera/ipa_interface.cpp | 73 +++++++\n src/libcamera/pipeline/ipu3/ipu3.cpp | 4 +-\n src/libcamera/pipeline/rkisp1/rkisp1.cpp | 10 +-\n src/libcamera/proxy/ipa_proxy_linux.cpp | 3 +-\n src/libcamera/proxy/ipa_proxy_thread.cpp | 8 +-\n src/libcamera/v4l2_subdevice.cpp | 201 ++++++++++++++++----\n src/libcamera/v4l2_videodevice.cpp | 20 +-\n test/ipa/ipa_wrappers_test.cpp | 22 ++-\n 19 files changed, 516 insertions(+), 86 deletions(-)\n\n--\n2.26.1" }