Cover Letter Detail
Show a cover letter.
GET /api/1.1/covers/1732/?format=api
{ "id": 1732, "url": "https://patchwork.libcamera.org/api/1.1/covers/1732/?format=api", "web_url": "https://patchwork.libcamera.org/cover/1732/", "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": "<20190806195518.16739-1-jacopo@jmondi.org>", "date": "2019-08-06T19:55:12", "name": "[libcamera-devel,v2,0/6] android: Add initial Camera HAL implementation", "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/1732/mbox/", "series": [ { "id": 446, "url": "https://patchwork.libcamera.org/api/1.1/series/446/?format=api", "web_url": "https://patchwork.libcamera.org/project/libcamera/list/?series=446", "date": "2019-08-06T19:55:12", "name": "android: Add initial Camera HAL implementation", "version": 2, "mbox": "https://patchwork.libcamera.org/series/446/mbox/" } ], "comments": "https://patchwork.libcamera.org/api/covers/1732/comments/", "headers": { "Return-Path": "<jacopo@jmondi.org>", "Received": [ "from relay5-d.mail.gandi.net (relay5-d.mail.gandi.net\n\t[217.70.183.197])\n\tby lancelot.ideasonboard.com (Postfix) with ESMTPS id 6463E6161A\n\tfor <libcamera-devel@lists.libcamera.org>;\n\tTue, 6 Aug 2019 21:53:59 +0200 (CEST)", "from uno.homenet.telecomitalia.it\n\t(host150-24-dynamic.51-79-r.retail.telecomitalia.it [79.51.24.150])\n\t(Authenticated sender: jacopo@jmondi.org)\n\tby relay5-d.mail.gandi.net (Postfix) with ESMTPSA id BBD7E1C0009;\n\tTue, 6 Aug 2019 19:53:58 +0000 (UTC)" ], "X-Originating-IP": "79.51.24.150", "From": "Jacopo Mondi <jacopo@jmondi.org>", "To": "libcamera-devel@lists.libcamera.org", "Date": "Tue, 6 Aug 2019 21:55:12 +0200", "Message-Id": "<20190806195518.16739-1-jacopo@jmondi.org>", "X-Mailer": "git-send-email 2.22.0", "MIME-Version": "1.0", "Content-Transfer-Encoding": "8bit", "Subject": "[libcamera-devel] [PATCH v2 0/6] android: Add initial Camera HAL\n\timplementation", "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": "Tue, 06 Aug 2019 19:53:59 -0000" }, "content": "Hello,\n this v2 of the camera HAL implementation for libcamera addresses comments\nfrom Laurent, mostly regarding adjustements to the build system.\n\nI have added the Apache-2.0 license text and the SPDX tag to the imported\nandroid files, which I have updated to the latest commit (no changes since the\nlast version).\n\nAdjusted the build system as suggested and statically linked the camera_metadata\nlibrary.\n\nThe HAL iteself remains the same, except that I have dropped the patch that\nmakes the Camera state accessible and now the Camera state is kep internal to\nthe CameraModule.\n\nThanks\n j\n\nJacopo Mondi (6):\n licenses: add Apache-2.0 license\n include: android: Add Android headers from Cros\n include: android: Add SPDX tags\n android: Add camera metadata library\n android: metadata: Add SPDX tag\n android: hal: Add Camera3 HAL\n\n .../libhardware/include/hardware/camera3.h | 3094 +++++++++++++++++\n .../include/hardware/camera_common.h | 917 +++++\n .../libhardware/include/hardware/fb.h | 174 +\n .../libhardware/include/hardware/gralloc.h | 385 ++\n .../libhardware/include/hardware/hardware.h | 239 ++\n include/android/meson.build | 5 +\n .../android/metadata/camera_metadata_hidden.h | 101 +\n .../android/metadata/system/camera_metadata.h | 581 ++++\n .../metadata/system/camera_metadata_tags.h | 1006 ++++++\n .../metadata/system/camera_vendor_tags.h | 159 +\n .../android/system/core/include/android/log.h | 145 +\n .../system/core/include/cutils/compiler.h | 45 +\n .../core/include/cutils/native_handle.h | 70 +\n .../system/core/include/system/camera.h | 299 ++\n .../system/core/include/system/graphics.h | 764 ++++\n .../system/core/include/system/window.h | 955 +++++\n include/meson.build | 1 +\n licenses/apache-2.0.txt | 202 ++\n meson_options.txt | 5 +\n src/android/camera3_hal.cpp | 130 +\n src/android/camera_hal_manager.cpp | 173 +\n src/android/camera_hal_manager.h | 56 +\n src/android/camera_module.cpp | 799 +++++\n src/android/camera_module.h | 75 +\n src/android/camera_proxy.cpp | 181 +\n src/android/camera_proxy.h | 41 +\n src/android/meson.build | 15 +\n src/android/metadata/camera_metadata.c | 1205 +++++++\n .../metadata/camera_metadata_tag_info.c | 2812 +++++++++++++++\n src/android/thread_rpc.cpp | 41 +\n src/android/thread_rpc.h | 56 +\n src/libcamera/meson.build | 9 +\n src/meson.build | 4 +\n 33 files changed, 14744 insertions(+)\n create mode 100644 include/android/hardware/libhardware/include/hardware/camera3.h\n create mode 100644 include/android/hardware/libhardware/include/hardware/camera_common.h\n create mode 100644 include/android/hardware/libhardware/include/hardware/fb.h\n create mode 100644 include/android/hardware/libhardware/include/hardware/gralloc.h\n create mode 100644 include/android/hardware/libhardware/include/hardware/hardware.h\n create mode 100644 include/android/meson.build\n create mode 100644 include/android/metadata/camera_metadata_hidden.h\n create mode 100644 include/android/metadata/system/camera_metadata.h\n create mode 100644 include/android/metadata/system/camera_metadata_tags.h\n create mode 100644 include/android/metadata/system/camera_vendor_tags.h\n create mode 100644 include/android/system/core/include/android/log.h\n create mode 100644 include/android/system/core/include/cutils/compiler.h\n create mode 100644 include/android/system/core/include/cutils/native_handle.h\n create mode 100644 include/android/system/core/include/system/camera.h\n create mode 100644 include/android/system/core/include/system/graphics.h\n create mode 100644 include/android/system/core/include/system/window.h\n create mode 100644 licenses/apache-2.0.txt\n create mode 100644 src/android/camera3_hal.cpp\n create mode 100644 src/android/camera_hal_manager.cpp\n create mode 100644 src/android/camera_hal_manager.h\n create mode 100644 src/android/camera_module.cpp\n create mode 100644 src/android/camera_module.h\n create mode 100644 src/android/camera_proxy.cpp\n create mode 100644 src/android/camera_proxy.h\n create mode 100644 src/android/meson.build\n create mode 100644 src/android/metadata/camera_metadata.c\n create mode 100644 src/android/metadata/camera_metadata_tag_info.c\n create mode 100644 src/android/thread_rpc.cpp\n create mode 100644 src/android/thread_rpc.h\n\n--\n2.22.0" }