From patchwork Tue Apr 1 13:19:35 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Barnab=C3=A1s_P=C5=91cze?= X-Patchwork-Id: 23094 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 4940EC3213 for ; Tue, 1 Apr 2025 13:19:47 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 4C54A68989; Tue, 1 Apr 2025 15:19:46 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="i/meYmdO"; dkim-atps=neutral Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 23C9C68962 for ; Tue, 1 Apr 2025 15:19:43 +0200 (CEST) Received: from pb-laptop.local (185.221.143.221.nat.pool.zt.hu [185.221.143.221]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id A6967741 for ; Tue, 1 Apr 2025 15:17:50 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1743513470; bh=ibWzcFR6kihW8NvcQpBAPs2eqgYLQu5Zyh2lGnhUXtI=; h=From:To:Subject:Date:From; b=i/meYmdOct6Yghyrun9fG5msxsMzZwYJZGmuEtLR5ts1IHppCWTo6+ojU9YYOO6+P Di/bOCYbQpFt7yu4gipycjUQwlxa2jQQL4npVfooLPoLjrJJzGE4P2dLmwA1+2PPq5 QoZcWvOlG1ZVwrqlob0mprzEvqeDU5fAkBL2/ywE= From: =?utf-8?q?Barnab=C3=A1s_P=C5=91cze?= To: libcamera-devel@lists.libcamera.org Subject: [PATCH v1 0/4] libcamera: controls: Misc. changes Date: Tue, 1 Apr 2025 15:19:35 +0200 Message-ID: <20250401131939.749583-1-barnabas.pocze@ideasonboard.com> X-Mailer: git-send-email 2.49.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" First, this patch series addresses https://bugs.libcamera.org/show_bug.cgi?id=255 that is, strings are now considered arrays both in `ControlValue`s and `ControlId`s. Second, arrays of arrays are disabled in the template machinery because they are not supported by `ControlValue`. Third, some code simplification using `if constexpr` instead of SFINAE + overloads. Barnabás Pőcze (4): libcamera: controls: Simplify SFINAE template parameter libcamera: controls: Strings are arrays libcamera: controls: Arrays of arrays are not supported libcamera: controls: Simplify ControlValue::{ControlValue,get,set} include/libcamera/controls.h | 81 ++++++++++----------------------- src/apps/cam/capture_script.cpp | 4 -- 2 files changed, 23 insertions(+), 62 deletions(-) --- 2.49.0