mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-02 21:48:55 +00:00
Remove unused DllImports
This commit is contained in:
parent
15ae032d0a
commit
8152e6b9d6
2 changed files with 0 additions and 6 deletions
|
@ -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 */
|
/* FIXME: This is not optimal */
|
||||||
public void MakeMetadataWritable() {
|
public void MakeMetadataWritable() {
|
||||||
if (IsMetadataWritable)
|
if (IsMetadataWritable)
|
||||||
|
|
|
@ -713,9 +713,6 @@ public void ParseNewClock (out Gst.Clock clock) {
|
||||||
[DllImport ("gstreamer-0.10.dll") ]
|
[DllImport ("gstreamer-0.10.dll") ]
|
||||||
static extern IntPtr gst_message_new_application (IntPtr src, IntPtr structure);
|
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) {
|
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);
|
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;
|
msg.cached_structure = structure;
|
||||||
|
|
Loading…
Reference in a new issue