c54777db04
Rebase our downstream patches and drop the one included in the release. See https://gitlab.freedesktop.org/camera/libcamera/-/releases/v0.3.1 Notes: - The abi-compliance checker reports 100% binary and source compatibility, so this release does not change the SONAME. - qcam has been ported to QT6. - This release has some notable improvements to the PPP/rkisp1, however lower frame rates might be encountered sometimes. This will hopefully get fixed in the imx258 driver in Linux 6.11. - The swISP got some fixes but nothing major apart from the patch we were already carrying. [ci:skip-build]: already built successfully in CI
32 lines
1.2 KiB
Diff
32 lines
1.2 KiB
Diff
From 53e200dca1b66d2d51b1ad3546a265a9e146f6c1 Mon Sep 17 00:00:00 2001
|
|
From: Robert Mader <robert.mader@collabora.com>
|
|
Date: Wed, 1 May 2024 18:12:02 +0200
|
|
Subject: [PATCH 3/4] libcamera: simple: Enable softISP for the Pinephone
|
|
|
|
In theory the PP should be able to use the actual HW ISP, however in
|
|
practice this does not work well yet - especially as the driver for the
|
|
front camera in Megi differs heavily from the upstream one.
|
|
|
|
Thus enable the swISP to make both cameras work reliably for now. This
|
|
is essentially what Megapixels does as well. If the HW ISP situation
|
|
improves, this can be dropped again.
|
|
---
|
|
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 86285bc4..c2658703 100644
|
|
--- a/src/libcamera/pipeline/simple/simple.cpp
|
|
+++ b/src/libcamera/pipeline/simple/simple.cpp
|
|
@@ -204,7 +204,7 @@ static const SimplePipelineInfo supportedDevices[] = {
|
|
{ "mtk-seninf", { { "mtk-mdp", 3 } }, false },
|
|
{ "mxc-isi", {}, false },
|
|
{ "qcom-camss", {}, true },
|
|
- { "sun6i-csi", {}, false },
|
|
+ { "sun6i-csi", {}, true },
|
|
};
|
|
|
|
} /* namespace */
|
|
--
|
|
2.45.2
|
|
|