From patchwork Thu May 7 21:37:19 2026 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 26683 Return-Path: X-Original-To: parsemail@patchwork.libcamera.org Delivered-To: parsemail@patchwork.libcamera.org Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by patchwork.libcamera.org (Postfix) with ESMTPS id B02C3BDCBD for ; Fri, 8 May 2026 08:21:44 +0000 (UTC) Received: from monstersaurus.ideasonboard.com (cpc89244-aztw30-2-0-cust6594.18-1.cable.virginm.net [86.31.185.195]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id DA2F0ABF for ; Fri, 8 May 2026 10:21:39 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1778228500; bh=ndWgKnmZU6IhXy/Y/qqSpv0QmggHsu3f5ZBXZ8Vgw1I=; h=From:To:Subject:Date:In-Reply-To:References:List-Id: List-Unsubscribe:List-Archive:List-Post:List-Help:List-Subscribe: Resent-From:Resent-To:From; b=M1KhHP3sQjDFivxS1QjBFjWsGjNyZB/w8/7vgsteNq4zkkZhK7jLZhL0duIY337J+ AaWoFWutBQ4Y8YnrXkz1WWk2KjfiEWbLHAy92lBO0G7GF+LfJAqc6lbVQKcBf1P4NG Bf3bT4mCiK31IOQDQ3uJeihjpi0FWNHCsH79kzM8= Delivered-To: kbingham@ideasonboard.com Received: from perceval.ideasonboard.com by perceval.ideasonboard.com with LMTP id 6E8DLhQG/WmqahUA4E0KoQ (envelope-from ) for ; Thu, 07 May 2026 23:37:24 +0200 Received: from lancelot.ideasonboard.com (lancelot.ideasonboard.com [92.243.16.209]) by perceval.ideasonboard.com (Postfix) with ESMTPS id 926BD2072; Thu, 7 May 2026 23:37:24 +0200 (CEST) Authentication-Results: perceval.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.a=rsa-sha256 header.s=mail header.b=UdKd8X1W; dkim-atps=neutral Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 27EDF6301E; Thu, 7 May 2026 23:37:28 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="UdKd8X1W"; 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 3A2E362010 for ; Thu, 7 May 2026 23:37:24 +0200 (CEST) Received: from killaraus.ideasonboard.com (2001-14ba-70f3-e800--a06.rev.dnainternet.fi [IPv6:2001:14ba:70f3:e800::a06]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id CD34A1121 for ; Thu, 7 May 2026 23:37:19 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1778189840; bh=ndWgKnmZU6IhXy/Y/qqSpv0QmggHsu3f5ZBXZ8Vgw1I=; h=From:To:Subject:Date:In-Reply-To:References:From; b=UdKd8X1W6Yv28jCWRo11r7J0sc1B9dYtvCJ7qBQpr57wu1WAe8XfVF6o6a3UehepT UCaW6WeKhUQ0EWahVHfkc9/yAgcALMVmnXr59ajNEyYkpAPS4SUJk+nkYHbxpQiZPv OhhFpha/TFMaE0fDR0eZxapzyzRBBAg+OGTlwuEU= From: Laurent Pinchart To: libcamera-devel@lists.libcamera.org Subject: [PATCH 1/3] ipa: libipa: v4l2_params: Mention ISP in file one-line description Date: Fri, 8 May 2026 00:37:19 +0300 Message-ID: <20260507213721.2137448-2-laurent.pinchart@ideasonboard.com> X-Mailer: git-send-email 2.53.0 In-Reply-To: <20260507213721.2137448-1-laurent.pinchart@ideasonboard.com> References: <20260507213721.2137448-1-laurent.pinchart@ideasonboard.com> 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" X-TUID: ws4KQV2V/og5 Resent-From: Kieran Bingham Resent-To: parsemail@patchwork.libcamera.org The v4l2_params.{cpp,h} files are helpers classes for the V4L2 ISP parameters buffers. Mention "ISP" in the one-line file description to clarify this. Signed-off-by: Laurent Pinchart Reviewed-by: Barnabás Pőcze Reviewed-by: Kieran Bingham --- src/ipa/libipa/v4l2_params.cpp | 2 +- src/ipa/libipa/v4l2_params.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ipa/libipa/v4l2_params.cpp b/src/ipa/libipa/v4l2_params.cpp index a1eeeb1b0e6a..c2971f1caf28 100644 --- a/src/ipa/libipa/v4l2_params.cpp +++ b/src/ipa/libipa/v4l2_params.cpp @@ -2,7 +2,7 @@ /* * Copyright (C) 2025, Ideas On Board * - * V4L2 Parameters + * V4L2 ISP Parameters */ #include "v4l2_params.h" diff --git a/src/ipa/libipa/v4l2_params.h b/src/ipa/libipa/v4l2_params.h index b9ef6cfb3b5b..f400b37d74b5 100644 --- a/src/ipa/libipa/v4l2_params.h +++ b/src/ipa/libipa/v4l2_params.h @@ -2,7 +2,7 @@ /* * Copyright (C) 2025, Ideas On Board * - * V4L2 Parameters + * V4L2 ISP Parameters */ #pragma once