Remove the verbose #ifndef/#define/#endif pattern for maintaining header idempotency, and replace it with a simple #pragma once. This simplifies the headers, and prevents redundant changes when header files get moved. Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Jean-Michel Hautbois <jeanmichel.hautbois@ideasonboard.com>
34 lines
573 B
C++
34 lines
573 B
C++
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/*
|
|
* Copyright (C) 2021, Vedant Paranjape
|
|
*
|
|
* gstreamer_test.cpp - GStreamer test base class
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <iostream>
|
|
#include <unistd.h>
|
|
|
|
#include <libcamera/base/utils.h>
|
|
|
|
#include "libcamera/internal/source_paths.h"
|
|
|
|
#include <gst/gst.h>
|
|
|
|
class GstreamerTest
|
|
{
|
|
public:
|
|
GstreamerTest();
|
|
virtual ~GstreamerTest();
|
|
|
|
protected:
|
|
virtual int createPipeline();
|
|
int startPipeline();
|
|
int processEvent();
|
|
void printError(GstMessage *msg);
|
|
|
|
GstElement *pipeline_;
|
|
GstElement *libcameraSrc_;
|
|
int status_;
|
|
};
|