Cover Letter Detail
Show a cover letter.
GET /api/1.1/covers/2532/?format=api
{ "id": 2532, "url": "https://patchwork.libcamera.org/api/1.1/covers/2532/?format=api", "web_url": "https://patchwork.libcamera.org/cover/2532/", "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": "<20200108163434.19530-1-jacopo@jmondi.org>", "date": "2020-01-08T16:34:24", "name": "[libcamera-devel,v4,00/10] Camera properties", "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/2532/mbox/", "series": [ { "id": 610, "url": "https://patchwork.libcamera.org/api/1.1/series/610/?format=api", "web_url": "https://patchwork.libcamera.org/project/libcamera/list/?series=610", "date": "2020-01-08T16:34:24", "name": "Camera properties", "version": 4, "mbox": "https://patchwork.libcamera.org/series/610/mbox/" } ], "comments": "https://patchwork.libcamera.org/api/covers/2532/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 81B9E60460\n\tfor <libcamera-devel@lists.libcamera.org>;\n\tWed, 8 Jan 2020 17:32:17 +0100 (CET)", "from uno.lan (93-34-114-233.ip49.fastwebnet.it [93.34.114.233])\n\t(Authenticated sender: jacopo@jmondi.org)\n\tby relay8-d.mail.gandi.net (Postfix) with ESMTPSA id DEDC81BF20F;\n\tWed, 8 Jan 2020 16:32:16 +0000 (UTC)" ], "X-Originating-IP": "93.34.114.233", "From": "Jacopo Mondi <jacopo@jmondi.org>", "To": "libcamera-devel@lists.libcamera.org", "Date": "Wed, 8 Jan 2020 17:34:24 +0100", "Message-Id": "<20200108163434.19530-1-jacopo@jmondi.org>", "X-Mailer": "git-send-email 2.24.0", "MIME-Version": "1.0", "Content-Type": "text/plain; charset=UTF-8", "Content-Transfer-Encoding": "8bit", "Subject": "[libcamera-devel] [PATCH v4 00/10] Camera properties", "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": "Wed, 08 Jan 2020 16:32:17 -0000" }, "content": "Hello,\n series refresh, but mostly sent out to have feedback on the newly defined\n'rotation' property which is the result of collaborative effort with Niklas\nand Laurent, I hope to have captured there the result of our endless meetings on\nthe subject.\n\nIf this progress, the associated DT and v4l2-controls should be re-defined, as\nwell as the translation to the corresponding android metadata.\n\nThanks\n j\n\nJacopo Mondi (10):\n [TEMP] include: linux: Update v4l2-controls.h\n libcamera: controls: Parse 'enum' in gen-controls.py\n libcamera: properties: Generate libcamera properties\n libcamera: controls: Add default to ControlRange\n libcamera: v4l2_controls: Store default value\n libcamera: camera_sensor: Parse camera properties\n libcamera: pipeline_handler: Add Camera properties\n libcamera: camera: Add Camera properties\n android: camera_device: Use Camera properties for static Metadata\n cam: Add option to list camera properties\n\n include/libcamera/camera.h | 1 +\n include/libcamera/controls.h | 5 +-\n include/libcamera/meson.build | 26 +-\n include/libcamera/property_ids.h.in | 33 +++\n include/linux/v4l2-controls.h | 7 +\n src/android/camera_device.cpp | 29 +-\n src/cam/main.cpp | 50 ++++\n src/cam/main.h | 1 +\n src/libcamera/camera.cpp | 16 +-\n src/libcamera/camera_sensor.cpp | 46 +++-\n src/libcamera/controls.cpp | 17 +-\n src/libcamera/gen-controls.py | 41 +++\n src/libcamera/include/camera_sensor.h | 7 +-\n src/libcamera/include/pipeline_handler.h | 2 +\n src/libcamera/meson.build | 21 +-\n src/libcamera/pipeline/ipu3/ipu3.cpp | 3 +\n src/libcamera/pipeline/rkisp1/rkisp1.cpp | 3 +\n src/libcamera/pipeline/vimc.cpp | 4 +\n src/libcamera/pipeline_handler.cpp | 19 ++\n src/libcamera/property_ids.cpp.in | 43 +++\n src/libcamera/property_ids.yaml | 334 +++++++++++++++++++++++\n src/libcamera/v4l2_controls.cpp | 9 +-\n 22 files changed, 688 insertions(+), 29 deletions(-)\n create mode 100644 include/libcamera/property_ids.h.in\n create mode 100644 src/libcamera/property_ids.cpp.in\n create mode 100644 src/libcamera/property_ids.yaml\n\n--\n2.24.0" }