QGroundControl
Ground Control Station for MAVLink Drones
Loading...
Searching...
No Matches
gstqgcelement.cc
Go to the documentation of this file.
1#include "gstqgcelements.h"
2
3#define GST_CAT_DEFAULT gst_qgc_debug
5
6void qgc_element_init(GstPlugin* plugin)
7{
8 (void) plugin;
9 static gsize res = FALSE;
10 if (g_once_init_enter(&res)) {
11 GST_DEBUG_CATEGORY_INIT(gst_qgc_debug, "qgc", 0, "QGC");
12 g_once_init_leave(&res, TRUE);
13 }
14}
GST_DEBUG_CATEGORY(GST_CAT_DEFAULT)
#define GST_CAT_DEFAULT
void qgc_element_init(GstPlugin *plugin)
G_BEGIN_DECLS GstDebugCategory * gst_qgc_debug