From patchwork Fri Oct 18 15:30:56 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Klug X-Patchwork-Id: 21686 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 79F89C32FE for ; Fri, 18 Oct 2024 15:31:23 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 03E5B6538B; Fri, 18 Oct 2024 17:31:22 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="jdPlwsrz"; 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 704CA633C7 for ; Fri, 18 Oct 2024 17:31:20 +0200 (CEST) Received: from ideasonboard.com (unknown [IPv6:2a00:6020:448c:6c00:77a0:ddb9:22bf:b8d9]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 6AA2C21C; Fri, 18 Oct 2024 17:29:36 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1729265376; bh=C7E8dpOLGcNCqSXO+Fyj+2Z8TeBqC07TjEKbZ1TjXTA=; h=From:To:Cc:Subject:Date:From; b=jdPlwsrzLoj4OULKtQOQdnZ2Auxyp1Ck2LS0wTWxla3MuA0nk7pXOSFG5Z7wLBh1g HgocB8Fuge7mj9I001vMZ8lvetySxJjiYrXz7w2jmt0h1jNXCubdw98YTxNMWrR5p8 NUlCBinrKijcZwTGZ6XUpdMK6MHxe3hupwcHt0bo= From: Stefan Klug To: libcamera-devel@lists.libcamera.org Cc: Stefan Klug Subject: [PATCH v3 0/4] A few small fixes Date: Fri, 18 Oct 2024 17:30:56 +0200 Message-ID: <20241018153116.925892-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 series contains a few small fixes that I'd like to get off my local tree. Patches 1-2 fix an error in rkisp1 stats handling. Patches 3-4 fix the python bindings for control type Point. Changes in v3: - Fix patch 1 to not flood the log in raw mode Changes in v2: - Fixes from review (see changelog in individual patches) Best regards, Stefan Stefan Klug (4): ipa: rkisp1: algorithms: agc: Check for correct stats type ipa: rkisp1: algorithms: awb: Check for correct stats type libcamera: controls: Add missing size to control_type pycamera: Add missing code for ControlTypePoint include/libcamera/controls.h | 1 + src/ipa/rkisp1/algorithms/agc.cpp | 6 +++++- src/ipa/rkisp1/algorithms/awb.cpp | 10 +++++++--- src/py/libcamera/py_enums.cpp | 3 ++- src/py/libcamera/py_helpers.cpp | 16 ++++++++++------ 5 files changed, 25 insertions(+), 11 deletions(-)