QGroundControl
Ground Control Station for MAVLink Drones
Loading...
Searching...
No Matches
gstqgc.cc
Go to the documentation of this file.
1#include "gstqgcelements.h"
2#include "qgc_version.h"
3
4static gboolean plugin_init(GstPlugin* plugin)
5{
6 if (!GST_ELEMENT_REGISTER(qgcvideosinkbin, plugin))
7 return FALSE;
8 if (!GST_ELEMENT_REGISTER(qgcqvideosink, plugin))
9 return FALSE;
10 return TRUE;
11}
12
13#define GST_PACKAGE_NAME "GStreamer plugin for QGC's Video Receiver"
14#define GST_PACKAGE_ORIGIN "https://qgroundcontrol.com/"
15#define GST_LICENSE "LGPL"
16#define PACKAGE "QGC Video Receiver"
17#define PACKAGE_VERSION QGC_APP_VERSION_STR
18
19GST_PLUGIN_DEFINE(GST_VERSION_MAJOR, GST_VERSION_MINOR, qgc, "QGC Video Receiver Plugin", plugin_init, PACKAGE_VERSION,
#define GST_LICENSE
Definition gstqgc.cc:15
static gboolean plugin_init(GstPlugin *plugin)
Definition gstqgc.cc:4
#define GST_PACKAGE_NAME
Definition gstqgc.cc:13
#define PACKAGE_VERSION
Definition gstqgc.cc:17
#define GST_PACKAGE_ORIGIN
Definition gstqgc.cc:14