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
7qgc_element_init(GstPlugin *plugin)
8{
9 (void) plugin;
10 static gsize res = FALSE;
11 if (g_once_init_enter(&res)) {
12 GST_DEBUG_CATEGORY_INIT (gst_qgc_debug, "qgc", 0, "QGC");
13 g_once_init_leave(&res, TRUE);
14 }
15}
GST_DEBUG_CATEGORY_STATIC(gst_qgc_debug)
#define GST_CAT_DEFAULT
void qgc_element_init(GstPlugin *plugin)