From 4188c6fa97e281249892c99c338bd9dfde44b30d Mon Sep 17 00:00:00 2001 From: Edward Hervey Date: Tue, 8 Jun 2010 18:36:37 +0200 Subject: [PATCH] ges: Initialize GstController in ges_init --- ges/ges.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ges/ges.c b/ges/ges.c index 15c357bd38..dc7b83006b 100644 --- a/ges/ges.c +++ b/ges/ges.c @@ -19,6 +19,7 @@ */ #include +#include #include "ges-internal.h" GST_DEBUG_CATEGORY (ges_debug); @@ -41,6 +42,7 @@ ges_init (void) /* initialize debugging category */ GST_DEBUG_CATEGORY_INIT (ges_debug, "ges", GST_DEBUG_FG_YELLOW, "GStreamer Editing Services"); + gst_controller_init (NULL, NULL); GST_DEBUG ("GStreamer Editing Services initialized"); }