2024-07-25 14:10:05 +00:00
|
|
|
From 1fe279d7fcda1b33edd1e82a7a0763d012d1ca7d Mon Sep 17 00:00:00 2001
|
2024-05-20 19:26:40 +00:00
|
|
|
From: Robert Mader <robert.mader@collabora.com>
|
|
|
|
Date: Mon, 22 Apr 2024 23:30:31 +0200
|
|
|
|
Subject: [PATCH 1/4] 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
|
2024-07-25 14:10:05 +00:00
|
|
|
index c050966a..b6b8f854 100644
|
2024-05-20 19:26:40 +00:00
|
|
|
--- a/src/libcamera/pipeline/simple/simple.cpp
|
|
|
|
+++ b/src/libcamera/pipeline/simple/simple.cpp
|
2024-07-25 14:10:05 +00:00
|
|
|
@@ -197,7 +197,7 @@ namespace {
|
2024-05-20 19:26:40 +00:00
|
|
|
|
|
|
|
static const SimplePipelineInfo supportedDevices[] = {
|
|
|
|
{ "dcmipp", {}, false },
|
|
|
|
- { "imx7-csi", { { "pxp", 1 } }, false },
|
|
|
|
+ { "imx7-csi", { { "pxp", 1 } }, true },
|
2024-07-25 14:10:05 +00:00
|
|
|
{ "intel-ipu6", {}, true },
|
|
|
|
{ "j721e-csi2rx", {}, true },
|
2024-05-20 19:26:40 +00:00
|
|
|
{ "mtk-seninf", { { "mtk-mdp", 3 } }, false },
|
|
|
|
--
|
2024-07-25 14:10:05 +00:00
|
|
|
2.45.2
|
2024-05-20 19:26:40 +00:00
|
|
|
|