mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-07-16 02:36:58 +08:00

These patches were generated from: https://github.com/raspberrypi/linux/commits/rpi-6.12.y With the following command: git format-patch -N v6.12.27..HEAD (HEAD -> 8d3206ee456a5ecdf9ddbfd8e5e231e4f0cd716e) Exceptions: - (def)configs patches - github workflows patches - applied & reverted patches - readme patches - wireless patches Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
24 lines
831 B
Diff
24 lines
831 B
Diff
From d754eac9b7bdb7f8c3f404409dc3783b6383b7a6 Mon Sep 17 00:00:00 2001
|
|
From: Dave Stevenson <dave.stevenson@raspberrypi.org>
|
|
Date: Fri, 6 Sep 2019 15:04:51 +0100
|
|
Subject: [PATCH] v4l2: Add a Greyworld AWB mode.
|
|
|
|
Adds a simple greyworld white balance preset, mainly for use
|
|
with cameras without an IR filter (eg Raspberry Pi NoIR)
|
|
|
|
Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.org>
|
|
---
|
|
include/uapi/linux/v4l2-controls.h | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
--- a/include/uapi/linux/v4l2-controls.h
|
|
+++ b/include/uapi/linux/v4l2-controls.h
|
|
@@ -1018,6 +1018,7 @@ enum v4l2_auto_n_preset_white_balance {
|
|
V4L2_WHITE_BALANCE_FLASH = 7,
|
|
V4L2_WHITE_BALANCE_CLOUDY = 8,
|
|
V4L2_WHITE_BALANCE_SHADE = 9,
|
|
+ V4L2_WHITE_BALANCE_GREYWORLD = 10,
|
|
};
|
|
|
|
#define V4L2_CID_WIDE_DYNAMIC_RANGE (V4L2_CID_CAMERA_CLASS_BASE+21)
|