From patchwork Mon Mar 31 14:43:39 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Klug X-Patchwork-Id: 23073 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 64862C3213 for ; Mon, 31 Mar 2025 14:43:59 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id B1F8B68981; Mon, 31 Mar 2025 16:43:58 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="mtmY1HmL"; dkim-atps=neutral Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id F033F68967 for ; Mon, 31 Mar 2025 16:43:56 +0200 (CEST) Received: from ideasonboard.com (unknown [IPv6:2a00:6020:448c:6c00:823a:c275:e8b5:b937]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 5167E725; Mon, 31 Mar 2025 16:42:05 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1743432125; bh=E/BSL6pKm5CPl6rLtdmoxOLFm9/bUtewe0mw4YHJGNk=; h=From:To:Cc:Subject:Date:From; b=mtmY1HmLIYOD6ipJUG8YSnRnjCYbp4mwY+BpeXdiLwqo57UKqN0lZkwKfn/K/TPb6 V1L5JgixIyQgeSuPqtNL3e2LfBiT0Om084qJ53aEmVC6nQEi9D4G9rjfBLhNNzhihb HbEikJgX116Hzt3PwhhjNGdBX4+0cw7SJtbFuPpA= From: Stefan Klug To: libcamera-devel@lists.libcamera.org Cc: Stefan Klug Subject: [PATCH 0/9] Wdr preparations Date: Mon, 31 Mar 2025 16:43:39 +0200 Message-ID: <20250331144352.736700-1-stefan.klug@ideasonboard.com> X-Mailer: git-send-email 2.43.0 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" Hi all, This patch series does a bit of preparatory work for the upcoming WDR support. The patches are a mix of topics but as they are all quite small, I thought that a small series might be the best fit. Patches 1-3 are tiny improvements in gen-debug-controls that ease the day to day work. Patches 4 and 7 add a bit of debug logging. Patches 5-6 fix a bug in the rkisp1 parameters handling. Patches 8-9 add support for exposure compensation in rkisp1. I hope you all like it :-) Best regards, Stefan Stefan Klug (9): utils: gen-debug-controls: Remove line number from control description utils: gen-debug-controls: Fix handling of controls that appear multiple times utils: gen-debug-controls: Improve log output libipa: agc_mean_luminance: Add debug logging ipa: rkisp1: params: Check for empty parameters pipeline: rkisp1: Add more info when parameter queue fails pipeline: rkisp1: Add color space information to debug log libipa: agc_mean_luminance: Add exposure compensation support ipa: rkisp1: agc: Implement ExposureValue control src/ipa/libipa/agc_mean_luminance.cpp | 31 +++++++++++++++++++++--- src/ipa/libipa/agc_mean_luminance.h | 6 +++++ src/ipa/rkisp1/algorithms/agc.cpp | 10 ++++++++ src/ipa/rkisp1/ipa_context.h | 2 ++ src/ipa/rkisp1/params.cpp | 3 +++ src/ipa/rkisp1/params.h | 13 ++++++++++ src/libcamera/pipeline/rkisp1/rkisp1.cpp | 13 ++++++++-- utils/gen-debug-controls.py | 28 ++++++++++++++++++--- 8 files changed, 96 insertions(+), 10 deletions(-)