diff options
Diffstat (limited to 'sources/custom/Element.cs')
| -rw-r--r-- | sources/custom/Element.cs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sources/custom/Element.cs b/sources/custom/Element.cs index 5a1881a..73de646 100644 --- a/sources/custom/Element.cs +++ b/sources/custom/Element.cs @@ -46,7 +46,7 @@ namespace Gst { } } - [DllImport("libgstreamer-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)] + [DllImport("gstreamer-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)] static extern void gst_element_class_add_metadata(IntPtr klass, IntPtr key, IntPtr value); public void AddMetadata(string key, string value) { @@ -57,14 +57,14 @@ namespace Gst { GLib.Marshaller.Free (native_value); } - [DllImport("libgstreamer-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)] + [DllImport("gstreamer-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)] static extern void gst_element_class_add_pad_template(IntPtr klass, IntPtr templ); public void AddPadTemplate(Gst.PadTemplate templ) { gst_element_class_add_pad_template(LookupGType().GetClassPtr (), templ == null ? IntPtr.Zero : templ.OwnedHandle); } - [DllImport("libgstreamer-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)] + [DllImport("gstreamer-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)] static extern void gst_element_class_add_static_metadata(IntPtr klass, IntPtr key, IntPtr value); public void AddStaticMetadata(string key, string value) { @@ -75,7 +75,7 @@ namespace Gst { GLib.Marshaller.Free (native_value); } - [DllImport("libgstreamer-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)] + [DllImport("gstreamer-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)] static extern void gst_element_class_set_metadata(IntPtr klass, IntPtr longname, IntPtr classification, IntPtr description, IntPtr author); public void SetMetadata(string longname, string classification, string description, string author) { @@ -90,7 +90,7 @@ namespace Gst { GLib.Marshaller.Free (native_author); } - [DllImport("libgstreamer-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)] + [DllImport("gstreamer-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)] static extern void gst_element_class_set_static_metadata(IntPtr klass, IntPtr longname, IntPtr classification, IntPtr description, IntPtr author); public void SetStaticMetadata(string longname, string classification, string description, string author) { |
