From patchwork Fri Sep 24 09:00:02 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Vedant Paranjape X-Patchwork-Id: 13916 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 CD011BF01C for ; Fri, 24 Sep 2021 09:00:19 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 05B126918C; Fri, 24 Sep 2021 11:00:19 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=gmail.com header.i=@gmail.com header.b="J3T2knBO"; dkim-atps=neutral Received: from mail-pj1-x1036.google.com (mail-pj1-x1036.google.com [IPv6:2607:f8b0:4864:20::1036]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 7979569186 for ; Fri, 24 Sep 2021 11:00:17 +0200 (CEST) Received: by mail-pj1-x1036.google.com with SMTP id on12-20020a17090b1d0c00b001997c60aa29so7308599pjb.1 for ; Fri, 24 Sep 2021 02:00:17 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=TQP3W1HzlZW6P/NqHhIiIT9vSuyBY59M73qtEMyXEDM=; b=J3T2knBOpZ7eicRSLdhlfgIChXmTcSSarur9HVEFzb/nE7GDB2DnTYUxL9cKmZm5BA ldksGUL5gkfoIT3AJBlmBeOXMYjIOCWJmfRzBaoassftipJ6O1TBj1JciWYIVKnhH8zu EgfUlRPU5UzMok0zla5yeUmqGf+FaZ++BAPM79jlKuBSS+xSGg30oDJZOCOywQ1X6mKw K3s0zuOL62R7ghyI5OOUuE5P0VdwVDkjJAr12FEdkoBquNbUodexhMT5x40X4GyIQzSJ aLX5zaOpz5aXrc3M3bwQipnWKrK5ZsyJayNK0ouaQI8nz4tzJ+AKa4awO7BeRYs868Xa pguA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=TQP3W1HzlZW6P/NqHhIiIT9vSuyBY59M73qtEMyXEDM=; b=ROAqfOTQZ4b7d5WCZ0nTFEumbxzJdYpJZQT3lXra1Dreol44U+lC+U2aAggdIsTKfv 6S2iqCyZ7VE2fNWR2VEpjnlyA0ICdK85BM0WykUaCXQYKwA78wSLNbcfDUEJ7BhNvUNt zPquxB+PrLOKe4wPVkBFJDOXjJlghf9ONxNuiGEMEa5w7SimhBmwR2MQiUgiM+vse/WY CpDqOdzfqYgilmmLaemFgjHKolb39f5F5oz8KHvtxf1SW3exe78mFGOSCESuUaUWb/Xi cb7mVV2ipauftmKQkvLb8fl+w6UjCFDwIuSQ7XG4b5RsjvL2P0lWQ5n+IHYq4Npg2xnH FERQ== X-Gm-Message-State: AOAM533vne38/CKHdDvz17fkRMh31MsHZfRevHM6p1KsKNy7O9mkF25L iMB+UcUABD/pn8KayCAkdWxTaQiEYDwvFmKP X-Google-Smtp-Source: ABdhPJy3ZcT3vZqet8msvn3W512Jk1uvpZh4yMksKwnzNjIN3PWgnFfHvN8BqdbF7Z9mXPXTUjnibA== X-Received: by 2002:a17:902:c115:b0:13c:9378:7343 with SMTP id 21-20020a170902c11500b0013c93787343mr7895006pli.30.1632474015537; Fri, 24 Sep 2021 02:00:15 -0700 (PDT) Received: from localhost.localdomain ([1.186.166.87]) by smtp.googlemail.com with ESMTPSA id v6sm8001724pfv.83.2021.09.24.02.00.14 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Fri, 24 Sep 2021 02:00:15 -0700 (PDT) From: Vedant Paranjape To: libcamera-devel@lists.libcamera.org Date: Fri, 24 Sep 2021 14:30:02 +0530 Message-Id: <20210924090002.1901913-1-vedantparanjape160201@gmail.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH v1] test: gstreamer: Remove unnecessary header file includes 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: , Cc: Vedant Paranjape Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" Remove header files which were not being used in the test code. The following files, libcamera/base/utils.h and libcamera/internal/source_paths.h were removed from includes. Signed-off-by: Vedant Paranjape Reviewed-by: Paul Elder Reviewed-by: Umang Jain --- test/gstreamer/gstreamer_single_stream_test.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/test/gstreamer/gstreamer_single_stream_test.cpp b/test/gstreamer/gstreamer_single_stream_test.cpp index 4a12e7957725..a0dd12cfea84 100644 --- a/test/gstreamer/gstreamer_single_stream_test.cpp +++ b/test/gstreamer/gstreamer_single_stream_test.cpp @@ -8,10 +8,6 @@ #include #include -#include - -#include "libcamera/internal/source_paths.h" - #include #include "gstreamer_test.h"