From patchwork Sun Oct 22 22:41:55 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 19173 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 47A34C32B6 for ; Sun, 22 Oct 2023 22:42:05 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 341E862989; Mon, 23 Oct 2023 00:42:02 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=libcamera.org; s=mail; t=1698014522; bh=OgsJHvCDHBt6YExnCbz5embblPd0uwTb1ztXustayS4=; h=To:Date:In-Reply-To:References:Subject:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To:Cc: From; b=e5H2h2gt/LMxBon9xXDPDo0gHrPfy0SbIrrfMSNV8woohPp2if7wnu/z4eVJTziBO tsPaPsRxIgmKWS/a7iB/EEb5YA5nhJSHFBMWNHBasHGv+3Z6rd4kGWhom1X5ehNg2/ 0mY4N5Ctzb/daB0z08zZb1pF8y/9KyWFI0wmPhuZ1pO1qZCEPbxrsfNcUKv6d9ISs3 DUNb6JcjJY2OVsUQp1C3Kb90UujQbccd+Q1s460UkKaBDhQak32wOJiwSp80cMHwab ZXX6LmGrcnN6jzhB/Fhj6UnpDQkVRNLcXnRrjPa9Qzw1aK5saDEeWs9NJbDaLS8W1w anH+P17d8fyVA== 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 31C6362980 for ; Mon, 23 Oct 2023 00:41:57 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="rRCV0UWP"; dkim-atps=neutral Received: from pendragon.ideasonboard.com (213-243-189-158.bb.dnainternet.fi [213.243.189.158]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id CA860749; Mon, 23 Oct 2023 00:41:46 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1698014507; bh=OgsJHvCDHBt6YExnCbz5embblPd0uwTb1ztXustayS4=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=rRCV0UWPL8bAa1IW4QvD373IBB8cBB4VjSsxVYew5pggSdVT3hi8SIm3pKeNsNMOY jrkRnOvOp5bhJdVgqPvE7TfXP4Vr4SS57+HK4ZWBt2g6bpRgMT19RcXu22YOjgZEem 7yAQWodfBFMUzzrR3pMp485AB4R5ZYfEbN81rDLk= To: libcamera-devel@lists.libcamera.org Date: Mon, 23 Oct 2023 01:41:55 +0300 Message-ID: <20231022224159.30298-5-laurent.pinchart@ideasonboard.com> X-Mailer: git-send-email 2.41.0 In-Reply-To: <20231019140133.32090-1-jacopo.mondi@ideasonboard.com> References: <20231019140133.32090-1-jacopo.mondi@ideasonboard.com> MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH v6 17/12] fixup! libcamera: transform: Add operations with Orientation 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: , X-Patchwork-Original-From: Laurent Pinchart via libcamera-devel From: Laurent Pinchart Reply-To: Laurent Pinchart Cc: Jacopo Mondi Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" - Fix parameter name in declaration of operator*() Signed-off-by: Laurent Pinchart --- include/libcamera/transform.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/libcamera/transform.h b/include/libcamera/transform.h index 847a1f94713c..9eb10e156d0d 100644 --- a/include/libcamera/transform.h +++ b/include/libcamera/transform.h @@ -75,7 +75,7 @@ Transform transformFromOrientation(const Orientation &orientation); Orientation transformToOrientation(const Transform &transform); Transform operator/(const Orientation &o1, const Orientation &o2); -Orientation operator*(const Orientation &o1, const Transform &t); +Orientation operator*(const Orientation &o, const Transform &t); const char *transformToString(Transform t);