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
5plugin_init(GstPlugin *plugin)
6{
7 return GST_ELEMENT_REGISTER(qgcvideosinkbin, plugin);
8}
9
10#define GST_PACKAGE_NAME "GStreamer plugin for QGC's Video Receiver"
11#define GST_PACKAGE_ORIGIN "https://qgroundcontrol.com/"
12#define GST_LICENSE "LGPL"
13#define PACKAGE "QGC Video Receiver"
14#define PACKAGE_VERSION QGC_APP_VERSION_STR
15
16GST_PLUGIN_DEFINE(
17 GST_VERSION_MAJOR, GST_VERSION_MINOR,
18 qgc,
19 "QGC Video Receiver Plugin",
22)
#define GST_LICENSE
Definition gstqgc.cc:12
static gboolean plugin_init(GstPlugin *plugin)
Definition gstqgc.cc:5
#define GST_PACKAGE_NAME
Definition gstqgc.cc:10
#define PACKAGE_VERSION
Definition gstqgc.cc:14
#define GST_PACKAGE_ORIGIN
Definition gstqgc.cc:11