Patch Detail
Show a patch.
GET /api/patches/3669/?format=api
{ "id": 3669, "url": "https://patchwork.libcamera.org/api/patches/3669/?format=api", "web_url": "https://patchwork.libcamera.org/patch/3669/", "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": "<20200502212643.1281485-1-niklas.soderlund@ragnatech.se>", "date": "2020-05-02T21:26:43", "name": "[libcamera-devel] qcam: DNGWriter: Fix missing field name", "commit_ref": "a0d8a9ec956cdf35ccfc4f01cfc166103a7a7bcf", "pull_url": null, "state": "accepted", "archived": false, "hash": "c8cb939cdd9c17a5582d9731e34c1344074eef30", "submitter": { "id": 5, "url": "https://patchwork.libcamera.org/api/people/5/?format=api", "name": "Niklas Söderlund", "email": "niklas.soderlund@ragnatech.se" }, "delegate": null, "mbox": "https://patchwork.libcamera.org/patch/3669/mbox/", "series": [ { "id": 872, "url": "https://patchwork.libcamera.org/api/series/872/?format=api", "web_url": "https://patchwork.libcamera.org/project/libcamera/list/?series=872", "date": "2020-05-02T21:26:43", "name": "[libcamera-devel] qcam: DNGWriter: Fix missing field name", "version": 1, "mbox": "https://patchwork.libcamera.org/series/872/mbox/" } ], "comments": "https://patchwork.libcamera.org/api/patches/3669/comments/", "check": "pending", "checks": "https://patchwork.libcamera.org/api/patches/3669/checks/", "tags": {}, "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 71945603FD\n\tfor <libcamera-devel@lists.libcamera.org>;\n\tSat, 2 May 2020 23:27:05 +0200 (CEST)", "from bismarck.berto.se (p4fca2392.dip0.t-ipconnect.de\n\t[79.202.35.146]) by bin-vsp-out-01.atm.binero.net (Halon) with ESMTPA\n\tid a75b30ea-8cbb-11ea-b7d8-005056917a89;\n\tSat, 02 May 2020 23:27:01 +0200 (CEST)" ], "X-Halon-ID": "a75b30ea-8cbb-11ea-b7d8-005056917a89", "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": "Sat, 2 May 2020 23:26:43 +0200", "Message-Id": "<20200502212643.1281485-1-niklas.soderlund@ragnatech.se>", "X-Mailer": "git-send-email 2.26.2", "MIME-Version": "1.0", "Content-Type": "text/plain; charset=UTF-8", "Content-Transfer-Encoding": "8bit", "Subject": "[libcamera-devel] [PATCH] qcam: DNGWriter: Fix missing field name", "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": "Sat, 02 May 2020 21:27:07 -0000" }, "content": "While reformatting the table the field name was missed for one entry,\nadd it.\n\nFixes: db7235b7141aa4e2 (\"qcam: Add DNGWriter\")\nSigned-off-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>\n---\n src/qcam/dng_writer.cpp | 2 +-\n 1 file changed, 1 insertion(+), 1 deletion(-)", "diff": "diff --git a/src/qcam/dng_writer.cpp b/src/qcam/dng_writer.cpp\nindex 08078369529bb780..7d51965dc2ea3201 100644\n--- a/src/qcam/dng_writer.cpp\n+++ b/src/qcam/dng_writer.cpp\n@@ -65,7 +65,7 @@ static const std::map<PixelFormat, FormatInfo> formatInfo = {\n \t{ PixelFormat(DRM_FORMAT_SGBRG10, MIPI_FORMAT_MOD_CSI2_PACKED), {\n \t\t.bitsPerSample = 10,\n \t\t.pattern = { CFAPatternGreen, CFAPatternBlue, CFAPatternRed, CFAPatternGreen },\n-\t\tpackScanlineSBGGR10P,\n+\t\t.packScanline = packScanlineSBGGR10P,\n \t} },\n \t{ PixelFormat(DRM_FORMAT_SGRBG10, MIPI_FORMAT_MOD_CSI2_PACKED), {\n \t\t.bitsPerSample = 10,\n", "prefixes": [ "libcamera-devel" ] }