[2/2] rkisp1: Turn it up to 11
diff mbox series

Message ID 20260401071650.116344-5-isaac.scott@ideasonboard.com
State New
Headers show
Series
  • Add Disco Mode to the rkisp1 pipeline handler
Related show

Commit Message

Isaac Scott April 1, 2026, 7:16 a.m. UTC
Sometimes the scale up to 10 does not provide enough granularity or
amplitude to adequately satisfy the funk levels required to provide a
correct vibe for a given throw-down. Increase the upper limits of Funk a
user can request to use to hither-to unheard of levels.

(You'd best put seatbelts on your eyes)

Signed-off-by: Isaac "Maracas" Scott <isaac.scott@ideasonboard.com>
---
 src/ipa/rkisp1/algorithms/awb.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Patch
diff mbox series

diff --git a/src/ipa/rkisp1/algorithms/awb.cpp b/src/ipa/rkisp1/algorithms/awb.cpp
index 749add143..1ceda32ee 100644
--- a/src/ipa/rkisp1/algorithms/awb.cpp
+++ b/src/ipa/rkisp1/algorithms/awb.cpp
@@ -96,7 +96,7 @@  int Awb::init(IPAContext &context, const YamlObject &tuningData)
 	cmap[&controls::ColourGains] = ControlInfo(0.0f, 3.996f,
 						   Span<const float, 2>{ { 1.0f, 1.0f } });
 	cmap[&controls::DiscoMode] = ControlInfo(false, true, false);
-	cmap[&controls::Funk] = ControlInfo(0, 10, 0);
+	cmap[&controls::Funk] = ControlInfo(0, 11, 0);
 
 	if (!tuningData.contains("algorithm"))
 		LOG(RkISP1Awb, Info) << "No AWB algorithm specified."