From patchwork Sun Jun 16 16:39:01 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 20331 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 BA00EC3293 for ; Sun, 16 Jun 2024 16:39:42 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id DBC3865496; Sun, 16 Jun 2024 18:39:41 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="n+LeNkU1"; 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 B303465493 for ; Sun, 16 Jun 2024 18:39:35 +0200 (CEST) Received: from pendragon.ideasonboard.com (81-175-209-231.bb.dnainternet.fi [81.175.209.231]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 60F30581 for ; Sun, 16 Jun 2024 18:39:19 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1718555959; bh=qHex/GhOpVtvSDNS+a2L9r0JIy5S2kkk3xz7tBdU+cE=; h=From:To:Subject:Date:In-Reply-To:References:From; b=n+LeNkU1FGuoLZlAD9wa72O2DLjKKH/Bmhe0QHaFgMefCoYp0Kxx33llEebvh/+Ce 8iSi9Yi5vEnDl8R8f6BDo/0U4qcc3Zydb0Zs0uySVZXpIAeNTgxAqvFbLKhOKsH6rT rVjlR6RM8GeMjmpoMyzHWHsztIU0n6EchDWS2y+0= From: Laurent Pinchart To: libcamera-devel@lists.libcamera.org Subject: [PATCH 03/12] ipa: libipa: agc_mean_luminance: Include missing header Date: Sun, 16 Jun 2024 19:39:01 +0300 Message-ID: <20240616163910.5506-4-laurent.pinchart@ideasonboard.com> X-Mailer: git-send-email 2.44.2 In-Reply-To: <20240616163910.5506-1-laurent.pinchart@ideasonboard.com> References: <20240616163910.5506-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" agc_mean_luminance.h uses utils::Duration, include the corresponding header. Signed-off-by: Laurent Pinchart Reviewed-by: Kieran Bingham Reviewed-by: Paul Elder Reviewed-by: Daniel Scally --- src/ipa/libipa/agc_mean_luminance.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/ipa/libipa/agc_mean_luminance.h b/src/ipa/libipa/agc_mean_luminance.h index d1bddda5d162..576d28be8eb0 100644 --- a/src/ipa/libipa/agc_mean_luminance.h +++ b/src/ipa/libipa/agc_mean_luminance.h @@ -12,6 +12,8 @@ #include #include +#include + #include #include "libcamera/internal/yaml_parser.h"