From 8b1869533d514f674261a7e73f93c749cdee914b Mon Sep 17 00:00:00 2001 From: Maarten Bosmans Date: Thu, 24 Dec 2009 12:53:51 +0100 Subject: [PATCH] Register some more basic GStreamer GTypes as managed types --- gstreamer-sharp/Application.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/gstreamer-sharp/Application.cs b/gstreamer-sharp/Application.cs index 2084c42003..4ada6f0171 100644 --- a/gstreamer-sharp/Application.cs +++ b/gstreamer-sharp/Application.cs @@ -121,6 +121,11 @@ namespace Gst { Gst.GLib.GType.Register (Structure.GType, typeof (Structure)); Gst.GLib.GType.Register (TagList.GType, typeof (TagList)); Gst.GLib.GType.Register (MiniObject.GType, typeof (MiniObject)); + Gst.GLib.GType.Register (Bus.GType, typeof (Bus)); + Gst.GLib.GType.Register (Pad.GType, typeof (Pad)); + Gst.GLib.GType.Register (GhostPad.GType, typeof (GhostPad)); + Gst.GLib.GType.Register (Message.GType, typeof (Message)); + Gst.GLib.GType.Register (SystemClock.GType, typeof (SystemClock)); GtkSharp.GstreamerSharp.ObjectManager.Initialize (); }