From patchwork Wed Nov 20 14:27:54 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Klug X-Patchwork-Id: 22038 X-Patchwork-Delegate: paul.elder@ideasonboard.com 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 5D12BC330D for ; Wed, 20 Nov 2024 14:28:35 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id CBDDF65F70; Wed, 20 Nov 2024 15:28:34 +0100 (CET) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="IpZrvrCA"; 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 B93F665F70 for ; Wed, 20 Nov 2024 15:28:31 +0100 (CET) Received: from ideasonboard.com (unknown [IPv6:2a00:6020:448c:6c00:bbd:82cc:f3f3:e12e]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 8EC9FAB5; Wed, 20 Nov 2024 15:28:13 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1732112893; bh=bWXs8axChpcW3jOsr+UwEAy/5Hwqoh3WeoTgsgGgnuE=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=IpZrvrCAg9wqjn0C78rTot43LJAGo0ZmNtqnO2aAZNEtENaiweKGhFjAHzqwNhfui 2wBOwnma8P0B1bgNuD/Wm82Vmfb15GmWB/5I47LY6c50C2Ebgt1Fg5w728AZ6u3cN4 1D5e8o20uyr5m70UwD9WWq81s5RUsNmoabhduH8w= From: Stefan Klug To: libcamera-devel@lists.libcamera.org Cc: Stefan Klug , Laurent Pinchart Subject: [PATCH v3 7/9] libipa: Use Matrix class from libcamera Date: Wed, 20 Nov 2024 15:27:54 +0100 Message-ID: <20241120142807.2093301-8-stefan.klug@ideasonboard.com> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20241120142807.2093301-1-stefan.klug@ideasonboard.com> References: <20241120142807.2093301-1-stefan.klug@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" Use the Matrix class from libcamera/internal in libipa so that the one from libipa can be dropped later. Signed-off-by: Stefan Klug Reviewed-by: Laurent Pinchart --- Changes in v3: - Collected tags - Removed empty line --- src/ipa/libipa/vector.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/ipa/libipa/vector.h b/src/ipa/libipa/vector.h index 8612a06a2ab2..b4aec8ceeeed 100644 --- a/src/ipa/libipa/vector.h +++ b/src/ipa/libipa/vector.h @@ -14,10 +14,9 @@ #include #include +#include "libcamera/internal/matrix.h" #include "libcamera/internal/yaml_parser.h" -#include "matrix.h" - namespace libcamera { LOG_DECLARE_CATEGORY(Vector)