mirror of
https://gitlab.postmarketos.org/postmarketOS/pmaports.git
synced 2025-07-16 02:05:11 +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
44 lines
1.1 KiB
Diff
44 lines
1.1 KiB
Diff
From 8f0dc983b47e303fb4cf16b63b4cd3f52e53fc9f Mon Sep 17 00:00:00 2001
|
|
From: Robert Mader <robert.mader@collabora.com>
|
|
Date: Sat, 8 Mar 2025 10:39:44 +0100
|
|
Subject: [PATCH 13/13] ipa/simple: Add tuning file for IMX376
|
|
|
|
The value is guessed from similar IMX sensors.
|
|
---
|
|
src/ipa/simple/data/imx376.yaml | 11 +++++++++++
|
|
src/ipa/simple/data/meson.build | 1 +
|
|
2 files changed, 12 insertions(+)
|
|
create mode 100644 src/ipa/simple/data/imx376.yaml
|
|
|
|
diff --git a/src/ipa/simple/data/imx376.yaml b/src/ipa/simple/data/imx376.yaml
|
|
new file mode 100644
|
|
index 000000000..f7d01b738
|
|
--- /dev/null
|
|
+++ b/src/ipa/simple/data/imx376.yaml
|
|
@@ -0,0 +1,11 @@
|
|
+# SPDX-License-Identifier: CC0-1.0
|
|
+%YAML 1.1
|
|
+---
|
|
+version: 1
|
|
+algorithms:
|
|
+ - BlackLevel:
|
|
+ blackLevel: 4096
|
|
+ - Awb:
|
|
+ - Lut:
|
|
+ - Agc:
|
|
+...
|
|
diff --git a/src/ipa/simple/data/meson.build b/src/ipa/simple/data/meson.build
|
|
index 19f90c976..e0c8e443a 100644
|
|
--- a/src/ipa/simple/data/meson.build
|
|
+++ b/src/ipa/simple/data/meson.build
|
|
@@ -5,6 +5,7 @@ conf_files = files([
|
|
'imx355.yaml',
|
|
'imx363.yaml',
|
|
'imx371.yaml',
|
|
+ 'imx376.yaml',
|
|
's5k3l6xx.yaml',
|
|
'uncalibrated.yaml',
|
|
])
|
|
--
|
|
2.49.0
|
|
|