Register some more basic GStreamer GTypes as managed types

This commit is contained in:
Maarten Bosmans 2009-12-24 12:53:51 +01:00 committed by Sebastian Dröge
parent 9203ed7c9a
commit 8b1869533d

View file

@ -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 ();
}