From patchwork Fri Oct 18 16:06:29 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Klug X-Patchwork-Id: 21691 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 AC1C1C32FE for ; Fri, 18 Oct 2024 16:06:44 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 91C256538A; Fri, 18 Oct 2024 18:06:43 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="VygQSFFR"; 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 B9271633C6 for ; Fri, 18 Oct 2024 18:06:42 +0200 (CEST) Received: from ideasonboard.com (unknown [IPv6:2a00:6020:448c:6c00:77a0:ddb9:22bf:b8d9]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id D08A121C; Fri, 18 Oct 2024 18:04:58 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1729267498; bh=0RMqK2b7LhAU7R/mCnhMMBJ8smJ+JVSGzvokmBEZpSg=; h=From:To:Cc:Subject:Date:From; b=VygQSFFRShSn9s6gtyNkWA4Njl0+2wnwl1nOgEpaC6TSefNCihaX7jMb/cF0LusNT nmvKXMIFQvOEYYG9GQZzu7g/RQGdBsu6uLJBabyclZ9ypycMcSp4Obj/5kv0GOptgA DhR15ATq056lNBSghPuw1ChLQiji50wOnrLfIvjE= From: Stefan Klug To: libcamera-devel@lists.libcamera.org Cc: Stefan Klug Subject: [PATCH v4 0/4] A few small fixes Date: Fri, 18 Oct 2024 18:06:29 +0200 Message-ID: <20241018160638.936993-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 v4: - Fix mistake in patch 1 that was introduced in v3 - sorry for the noise 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 | 7 ++++++- src/ipa/rkisp1/algorithms/awb.cpp | 10 +++++++--- src/py/libcamera/py_enums.cpp | 3 ++- src/py/libcamera/py_helpers.cpp | 16 ++++++++++------ 5 files changed, 26 insertions(+), 11 deletions(-)