From patchwork Fri Oct 18 14:58:34 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Klug X-Patchwork-Id: 21681 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 A2E87C32AF for ; Fri, 18 Oct 2024 14:59:03 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id D24BC633C7; Fri, 18 Oct 2024 16:59:02 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="jyw/QmD8"; dkim-atps=neutral Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 1D00E633C6 for ; Fri, 18 Oct 2024 16:59:01 +0200 (CEST) Received: from ideasonboard.com (unknown [IPv6:2a00:6020:448c:6c00:77a0:ddb9:22bf:b8d9]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 0E363514; Fri, 18 Oct 2024 16:57:17 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1729263437; bh=P/6sGua+KL6BcomSoJ/aP8/aaYouoBi+CXsmHuyA+2M=; h=From:To:Cc:Subject:Date:From; b=jyw/QmD8Yx0DGfRJploa9P6rVMHcVBin0N/rf6/xbGBi6IUFsLVju1/5v7s0zwMgR kv3Bz4eOoAUzwBIj/rU5amvTo/3+r9z5dkj0uQWmnNLvTt9eBKCYnEkJRHF28ZO/Ol xmvvvh9uFZB5g+/lHdRFtPoju1o3ifzBKO0HOflA= From: Stefan Klug To: libcamera-devel@lists.libcamera.org Cc: Stefan Klug Subject: [PATCH v2 0/4] A few small fixes Date: Fri, 18 Oct 2024 16:58:34 +0200 Message-ID: <20241018145856.914816-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 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 | 4 ++-- src/ipa/rkisp1/algorithms/awb.cpp | 10 +++++++--- src/py/libcamera/py_enums.cpp | 3 ++- src/py/libcamera/py_helpers.cpp | 16 ++++++++++------ 5 files changed, 22 insertions(+), 12 deletions(-)