mirror of
https://gitlab.postmarketos.org/postmarketOS/pmaports.git
synced 2025-07-23 14:55:14 +03:00
See https://gitlab.freedesktop.org/camera/libcamera/-/releases/v0.5.1 Additional changes: - Adopt build to commit "ipa: Move IPA installations to a subdir" - Backport a fix for the simple pipeline Part-of: https://gitlab.postmarketos.org/postmarketos/pmaports/-/merge_requests/6608 [ci:skip-build]: already built successfully in CI
26 lines
924 B
Diff
26 lines
924 B
Diff
From 3ba0384186117f1b64676f530a23d70f8784af7a Mon Sep 17 00:00:00 2001
|
|
From: Robert Mader <robert.mader@collabora.com>
|
|
Date: Mon, 22 Apr 2024 23:30:31 +0200
|
|
Subject: [PATCH 02/13] libcamera: simple: Enable softwareISP for the librem5
|
|
|
|
And - in theory - on similar devices.
|
|
---
|
|
src/libcamera/pipeline/simple/simple.cpp | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/src/libcamera/pipeline/simple/simple.cpp b/src/libcamera/pipeline/simple/simple.cpp
|
|
index 4323472e1..74e0683f4 100644
|
|
--- a/src/libcamera/pipeline/simple/simple.cpp
|
|
+++ b/src/libcamera/pipeline/simple/simple.cpp
|
|
@@ -250,7 +250,7 @@ namespace {
|
|
|
|
static const SimplePipelineInfo supportedDevices[] = {
|
|
{ "dcmipp", {}, false },
|
|
- { "imx7-csi", { { "pxp", 1 } }, false },
|
|
+ { "imx7-csi", { { "pxp", 1 } }, true },
|
|
{ "intel-ipu6", {}, true },
|
|
{ "j721e-csi2rx", {}, true },
|
|
{ "mtk-seninf", { { "mtk-mdp", 3 } }, false },
|
|
--
|
|
2.49.0
|
|
|