From patchwork Sun Oct 22 22:41:52 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 19169 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 C0D96BDCBD for ; Sun, 22 Oct 2023 22:41:59 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 242FD61DD0; Mon, 23 Oct 2023 00:41:59 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=libcamera.org; s=mail; t=1698014519; bh=orJ8axHWwuV4beDroUq04obZWoVZnL2DgJuABEWlhWU=; 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=zjlWtQDUoWawPv+IY4utUxan66HFx8SKmryIyyyeNgvNqCza/fCkdtIAVHjUAs2u9 l/jhV3TvRyRleLasAE1tC1qTdGwSrFyZigHLLXF8ifuvkRgqm8lm7MIX//Q+CiYw4y m2ic4q1xsgQ1tJ7jpsgmMEnwI8V6dnZoLW5vQPPP4PegMzdBUC33WO3YnOFbfzZacM KJiTpEudH23o4zhO3lKNUlTyIRg9qsNHg21UKv8xZF0lQB6Tz+9fpSkYMklyi4hu2W dCFvg8kc0eOOPkFGBLFaPPX2j+SS8PmRMLgoAjQk5oJQxXYRdnURd+QrsFxwjHbvsb YutKTFuv4SPqA== Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 78B956297C for ; Mon, 23 Oct 2023 00:41:53 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="tmi+zouj"; 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 F057BD20; Mon, 23 Oct 2023 00:41:42 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1698014503; bh=orJ8axHWwuV4beDroUq04obZWoVZnL2DgJuABEWlhWU=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=tmi+zouj4l/5c8gvgs5ncw6LaYfHrkKCdd4ZX63gcB48hpGnIPLN0RUCLGcQ/dITB 2Wq7ZaPpFHOkmhdvkILBnGIihTuHR2hCcGQdG4KWql+cASoc3AsPUdNmpkDXf49OCV 0GLMR+4Kn2SyT+PGenHaNdbb+Jct4c5OOUvFi+QY= To: libcamera-devel@lists.libcamera.org Date: Mon, 23 Oct 2023 01:41:52 +0300 Message-ID: <20231022224159.30298-2-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 14/12] fixup! libcamera: camera: Introduce 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 typos in orientation strings Signed-off-by: Laurent Pinchart Reviewed-by: Jacopo Mondi --- src/libcamera/orientation.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libcamera/orientation.cpp b/src/libcamera/orientation.cpp index a6363df30861..bd17dea948a9 100644 --- a/src/libcamera/orientation.cpp +++ b/src/libcamera/orientation.cpp @@ -102,8 +102,8 @@ std::ostream &operator<<(std::ostream &out, const Orientation &orientation) { constexpr std::array orientationNames = { "", /* Orientation starts counting from 1. */ - "Rotate0", "rotate0Flip", - "Rotate180", "rotate180Flip", + "Rotate0", "Rotate0Mirror", + "Rotate180", "Rotate180Mirror", "Rotate90Mirror", "Rotate270", "Rotate270Mirror", "Rotate90", };