blob: 9c50e2881d6acb8ac50a63eeff28b9bcf28e53d7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
/*
* Copyright (C) 2021, Vedant Paranjape
*
* gstreamer_test.cpp - GStreamer test base class
*/
#ifndef __LIBCAMERA_GSTREAMER_TEST_H__
#define __LIBCAMERA_GSTREAMER_TEST_H__
#include <iostream>
#include <unistd.h>
#include <libcamera/base/utils.h>
#include "libcamera/internal/source_paths.h"
#include <gst/gst.h>
using namespace std;
class GstreamerTest
{
public:
GstreamerTest();
virtual ~GstreamerTest();
protected:
virtual int createPipeline();
int startPipeline();
int processEvent();
void printError(GstMessage *msg);
GstElement *pipeline_;
GstElement *libcameraSrc_;
int status_;
};
#endif /* __LIBCAMERA_GSTREAMER_TEST_H__ */
|