From patchwork Wed Apr 1 07:16:40 2026 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Isaac Scott X-Patchwork-Id: 26404 Return-Path: X-Original-To: parsemail@patchwork.libcamera.org Delivered-To: parsemail@patchwork.libcamera.org Received: from lancelot.ideasonboard.com (lancelot.ideasonboard.com [92.243.16.209]) by patchwork.libcamera.org (Postfix) with ESMTPS id E43F3BDCBD for ; Wed, 1 Apr 2026 07:18:04 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 9C31462D48; Wed, 1 Apr 2026 09:18:04 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="tICQHF+f"; dkim-atps=neutral Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [IPv6:2001:4b98:dc2:55:216:3eff:fef7:d647]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 83B7762D24 for ; Wed, 1 Apr 2026 09:18:02 +0200 (CEST) Received: from t16.localdomain (cpc90716-aztw32-2-0-cust408.18-1.cable.virginm.net [86.26.101.153]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 8AA5F225; Wed, 1 Apr 2026 09:16:39 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1775027799; bh=BXY03SrCEjl4H2LJPFr2nMQTmXg/Uv1ANYMpf93SMuY=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=tICQHF+fG9W43BXz8eFgqGQAQgAA8iIj98vAx4tXnrG0LAg6XmC+rySalK0PTeZih v5dExP6owRHrT96gdR+alOvQm9MoUo8zxKnPxsJxiXJiM66TWM9mU81hb/gnpuawoK BZhHKjC6WZgqSa2Q6vGhsMRkkl9ovOOfbFMai1SQ= From: Isaac Scott To: libcamera-devel@lists.libcamera.org Cc: Isaac Scott Subject: [PATCH 2/2] rkisp1: Turn it up to 11 Date: Wed, 1 Apr 2026 08:16:40 +0100 Message-ID: <20260401071650.116344-5-isaac.scott@ideasonboard.com> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20260401071650.116344-2-isaac.scott@ideasonboard.com> References: <20260401071650.116344-2-isaac.scott@ideasonboard.com> MIME-Version: 1.0 X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" 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 --- src/ipa/rkisp1/algorithms/awb.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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{ { 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."