mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-20 16:51:10 +00:00
ges: Initialize GstController in ges_init
This commit is contained in:
parent
9d8ce82b61
commit
4188c6fa97
1 changed files with 2 additions and 0 deletions
|
@ -19,6 +19,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <ges/ges.h>
|
#include <ges/ges.h>
|
||||||
|
#include <gst/controller/gstcontroller.h>
|
||||||
#include "ges-internal.h"
|
#include "ges-internal.h"
|
||||||
|
|
||||||
GST_DEBUG_CATEGORY (ges_debug);
|
GST_DEBUG_CATEGORY (ges_debug);
|
||||||
|
@ -41,6 +42,7 @@ ges_init (void)
|
||||||
/* initialize debugging category */
|
/* initialize debugging category */
|
||||||
GST_DEBUG_CATEGORY_INIT (ges_debug, "ges", GST_DEBUG_FG_YELLOW,
|
GST_DEBUG_CATEGORY_INIT (ges_debug, "ges", GST_DEBUG_FG_YELLOW,
|
||||||
"GStreamer Editing Services");
|
"GStreamer Editing Services");
|
||||||
|
gst_controller_init (NULL, NULL);
|
||||||
|
|
||||||
GST_DEBUG ("GStreamer Editing Services initialized");
|
GST_DEBUG ("GStreamer Editing Services initialized");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue