diff --git a/gstreamer-sharp/Buffer.custom b/gstreamer-sharp/Buffer.custom index d69f0455a5..30e72f4000 100644 --- a/gstreamer-sharp/Buffer.custom +++ b/gstreamer-sharp/Buffer.custom @@ -71,9 +71,6 @@ public byte this [uint index] { } } -[DllImport ("gstreamer-0.10.dll") ] -static extern IntPtr gst_buffer_make_metadata_writable (IntPtr raw); - /* FIXME: This is not optimal */ public void MakeMetadataWritable() { if (IsMetadataWritable) diff --git a/gstreamer-sharp/Message.custom b/gstreamer-sharp/Message.custom index 584bb86dc6..f9a7a2ecdb 100644 --- a/gstreamer-sharp/Message.custom +++ b/gstreamer-sharp/Message.custom @@ -713,9 +713,6 @@ public void ParseNewClock (out Gst.Clock clock) { [DllImport ("gstreamer-0.10.dll") ] static extern IntPtr gst_message_new_application (IntPtr src, IntPtr structure); -[DllImport ("gstreamer-0.10.dll") ] -static extern IntPtr gst_structure_copy (IntPtr handle); - public static Message NewApplication (Gst.Object src, Gst.Structure structure) { Message msg = (Message) GLib.Opaque.GetOpaque (gst_message_new_application (src.Handle, (structure != null) ? structure.Handle : IntPtr.Zero), typeof (Message), true); msg.cached_structure = structure;