mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-02 14:36:41 +00:00
aa7bb8fa1c
glib-sharp will only get a new release with the new API that we need for 3.0 in a year or something. Instead of waiting a year before we can release something we now have our own internal copy of glib-sharp trunk that will be dropped once glib-sharp 3.0 is released. Everything is now compilable and working without any additional patches.
122 lines
4.4 KiB
Text
122 lines
4.4 KiB
Text
[DllImport ("libgobject-2.0-0.dll") ]
|
|
static extern IntPtr g_object_ref (IntPtr raw);
|
|
[DllImport("libgstreamer-0.10.dll") ]
|
|
static extern bool gst_element_add_pad (IntPtr raw, IntPtr pad);
|
|
|
|
protected bool AddPad (Pad p) {
|
|
bool ret = gst_element_add_pad (this.Handle, p == null ? IntPtr.Zero : p.Handle);
|
|
if (ret)
|
|
g_object_ref (p.Handle);
|
|
return ret;
|
|
}
|
|
|
|
public static bool Link (params Element [] elements) {
|
|
for (int i = 0; i < elements.Length - 1; i++) {
|
|
if (!elements[i].Link (elements[i+1]))
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
public static void Unlink (params Element [] elements) {
|
|
for (int i = 0; i < elements.Length - 1; i++) {
|
|
elements[i].Unlink (elements[i+1]);
|
|
}
|
|
}
|
|
|
|
public Gst.StateChangeReturn GetState (out Gst.State state, ulong timeout) {
|
|
Gst.State pending;
|
|
return GetState (out state, out pending, timeout);
|
|
}
|
|
|
|
[DllImport("libgstreamer-0.10.dll") ]
|
|
static extern void gst_element_found_tags (IntPtr raw, IntPtr list);
|
|
[DllImport("libgstreamer-0.10.dll") ]
|
|
static extern IntPtr gst_tag_list_copy (IntPtr raw);
|
|
|
|
protected void FoundTags (Gst.TagList list) {
|
|
gst_element_found_tags (Handle, list == null ? IntPtr.Zero : gst_tag_list_copy (list.Handle));
|
|
}
|
|
|
|
[DllImport("libgstreamer-0.10.dll") ]
|
|
static extern void gst_element_found_tags_for_pad (IntPtr raw, IntPtr pad, IntPtr list);
|
|
|
|
protected void FoundTagsForPad (Gst.Pad pad, Gst.TagList list) {
|
|
gst_element_found_tags_for_pad (Handle, pad == null ? IntPtr.Zero : pad.Handle, list == null ? IntPtr.Zero : gst_tag_list_copy (list.Handle));
|
|
}
|
|
|
|
[DllImport("libgstreamer-0.10.dll") ]
|
|
static extern IntPtr gst_element_get_query_types (IntPtr raw);
|
|
|
|
public Gst.QueryType[] GetQueryTypes () {
|
|
IntPtr raw_ret = gst_element_get_query_types (Handle);
|
|
if (raw_ret == IntPtr.Zero)
|
|
return new Gst.QueryType[] {};
|
|
|
|
ArrayList result = new ArrayList ();
|
|
bool term = false;
|
|
int ofs = 0;
|
|
while (!term) {
|
|
Gst.QueryType t = (Gst.QueryType) Marshal.ReadInt32 (raw_ret, ofs);
|
|
if (t == Gst.QueryType.None) {
|
|
term = true;
|
|
} else {
|
|
result.Add (t);
|
|
ofs += 4;
|
|
}
|
|
}
|
|
|
|
return (Gst.QueryType[]) result.ToArray (typeof (Gst.QueryType));
|
|
}
|
|
|
|
[DllImport("libgstreamer-0.10.dll") ]
|
|
static extern void gst_element_class_add_pad_template (IntPtr klass, IntPtr templ);
|
|
|
|
protected static void AddPadTemplate (Gst.GLib.GType gtype, Gst.PadTemplate templ) {
|
|
IntPtr class_ptr = new IntPtr (gtype.ClassPtr.ToInt64 ());
|
|
gst_element_class_add_pad_template (class_ptr, templ.Handle);
|
|
}
|
|
|
|
[DllImport("libgstreamer-0.10.dll") ]
|
|
static extern IntPtr gst_element_class_get_pad_template (IntPtr klass, IntPtr name);
|
|
|
|
public Gst.PadTemplate GetPadTemplate (string name) {
|
|
Gst.GLib.GType gtype = this.LookupGType ();
|
|
IntPtr class_ptr = new IntPtr (gtype.ClassPtr.ToInt64 ());
|
|
IntPtr native_name = Gst.GLib.Marshaller.StringToPtrGStrdup (name);
|
|
IntPtr raw_ret = gst_element_class_get_pad_template (class_ptr, native_name);
|
|
Gst.GLib.Marshaller.Free (native_name);
|
|
|
|
return Gst.GLib.Object.GetObject (raw_ret, false) as Gst.PadTemplate;
|
|
}
|
|
|
|
[DllImport("libgstreamer-0.10.dll") ]
|
|
static extern IntPtr gst_element_class_get_pad_template_list (IntPtr klass);
|
|
|
|
public Gst.PadTemplate[] PadTemplates {
|
|
get {
|
|
Gst.GLib.GType gtype = this.LookupGType ();
|
|
IntPtr class_ptr = new IntPtr (gtype.ClassPtr.ToInt64 ());
|
|
IntPtr raw_ret = gst_element_class_get_pad_template_list (class_ptr);
|
|
|
|
return (Gst.PadTemplate[]) Gst.GLib.Marshaller.ListPtrToArray (raw_ret, typeof (Gst.GLib.List), false, false, typeof (Gst.PadTemplate));
|
|
}
|
|
}
|
|
|
|
[DllImport("libgstreamer-0.10.dll") ]
|
|
static extern void gst_element_class_set_details_simple (IntPtr klass, IntPtr longname, IntPtr classification, IntPtr desc, IntPtr author);
|
|
|
|
protected static void SetDetails (Gst.GLib.GType gtype, string longname, string klass, string description, string author) {
|
|
IntPtr class_ptr = new IntPtr (gtype.ClassPtr.ToInt64 ());
|
|
IntPtr native_longname = Gst.GLib.Marshaller.StringToPtrGStrdup (longname);
|
|
IntPtr native_klass = Gst.GLib.Marshaller.StringToPtrGStrdup (klass);
|
|
IntPtr native_desc = Gst.GLib.Marshaller.StringToPtrGStrdup (description);
|
|
IntPtr native_author = Gst.GLib.Marshaller.StringToPtrGStrdup (author);
|
|
gst_element_class_set_details_simple (class_ptr, native_longname, native_klass, native_desc, native_author);
|
|
|
|
Gst.GLib.Marshaller.Free (native_longname);
|
|
Gst.GLib.Marshaller.Free (native_klass);
|
|
Gst.GLib.Marshaller.Free (native_desc);
|
|
Gst.GLib.Marshaller.Free (native_author);
|
|
}
|