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
3static gboolean
4plugin_init(GstPlugin *plugin)
5{
6 gboolean ret = FALSE;
7
8 ret |= GST_ELEMENT_REGISTER(qgcvideosinkbin, plugin);
9
10 return ret;
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 "current"
18
19GST_PLUGIN_DEFINE(
20 GST_VERSION_MAJOR, GST_VERSION_MINOR,
21 qgc,
22 "QGC Video Receiver Plugin",
25)
#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