mirror of
https://gitlab.postmarketos.org/postmarketOS/pmaports.git
synced 2025-07-17 02:35:11 +03:00
- drop some upstreamed patches - add some tuning files with black levels Release notes: https://gitlab.freedesktop.org/camera/libcamera/-/releases/v0.4.0
27 lines
930 B
Diff
27 lines
930 B
Diff
From fe95cf63979bed8000ff0794b015112fef0eaa66 Mon Sep 17 00:00:00 2001
|
|
From: Robert Mader <robert.mader@collabora.com>
|
|
Date: Sun, 13 Oct 2024 14:13:44 +0200
|
|
Subject: [PATCH 6/6] pipeline: simple: Increase internal buffer count to four
|
|
aswell
|
|
|
|
Signed-off-by: Robert Mader <robert.mader@collabora.com>
|
|
---
|
|
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 f6442019..79d8b3cd 100644
|
|
--- a/src/libcamera/pipeline/simple/simple.cpp
|
|
+++ b/src/libcamera/pipeline/simple/simple.cpp
|
|
@@ -361,7 +361,7 @@ protected:
|
|
int queueRequestDevice(Camera *camera, Request *request) override;
|
|
|
|
private:
|
|
- static constexpr unsigned int kNumInternalBuffers = 3;
|
|
+ static constexpr unsigned int kNumInternalBuffers = 4;
|
|
|
|
struct EntityData {
|
|
std::unique_ptr<V4L2VideoDevice> video;
|
|
--
|
|
2.47.1
|
|
|