mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-11 20:01:35 +00:00
96 lines
2.8 KiB
C#
96 lines
2.8 KiB
C#
// This file was generated by the Gtk# code generator.
|
|
// Any changes made will be lost if regenerated.
|
|
|
|
namespace GstSharp {
|
|
|
|
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
#region Autogenerated code
|
|
[UnmanagedFunctionPointer (CallingConvention.Cdecl)]
|
|
internal delegate IntPtr MemoryShareFunctionNative(IntPtr mem, IntPtr offset, IntPtr size);
|
|
|
|
internal class MemoryShareFunctionInvoker {
|
|
|
|
MemoryShareFunctionNative native_cb;
|
|
IntPtr __data;
|
|
GLib.DestroyNotify __notify;
|
|
|
|
~MemoryShareFunctionInvoker ()
|
|
{
|
|
if (__notify == null)
|
|
return;
|
|
__notify (__data);
|
|
}
|
|
|
|
internal MemoryShareFunctionInvoker (MemoryShareFunctionNative native_cb) : this (native_cb, IntPtr.Zero, null) {}
|
|
|
|
internal MemoryShareFunctionInvoker (MemoryShareFunctionNative native_cb, IntPtr data) : this (native_cb, data, null) {}
|
|
|
|
internal MemoryShareFunctionInvoker (MemoryShareFunctionNative native_cb, IntPtr data, GLib.DestroyNotify notify)
|
|
{
|
|
this.native_cb = native_cb;
|
|
__data = data;
|
|
__notify = notify;
|
|
}
|
|
|
|
internal Gst.MemoryShareFunction Handler {
|
|
get {
|
|
return new Gst.MemoryShareFunction(InvokeNative);
|
|
}
|
|
}
|
|
|
|
Gst.Memory InvokeNative (Gst.Memory mem, long offset, long size)
|
|
{
|
|
Gst.Memory __result = native_cb (mem == null ? IntPtr.Zero : mem.Handle, new IntPtr (offset), new IntPtr (size)) == IntPtr.Zero ? null : (Gst.Memory) GLib.Opaque.GetOpaque (native_cb (mem == null ? IntPtr.Zero : mem.Handle, new IntPtr (offset), new IntPtr (size)), typeof (Gst.Memory), true);
|
|
return __result;
|
|
}
|
|
}
|
|
|
|
internal class MemoryShareFunctionWrapper {
|
|
|
|
public IntPtr NativeCallback (IntPtr mem, IntPtr offset, IntPtr size)
|
|
{
|
|
try {
|
|
Gst.Memory __ret = managed (mem == IntPtr.Zero ? null : (Gst.Memory) GLib.Opaque.GetOpaque (mem, typeof (Gst.Memory), false), (long) offset, (long) size);
|
|
if (release_on_call)
|
|
gch.Free ();
|
|
return __ret == null ? IntPtr.Zero : __ret.OwnedCopy;
|
|
} catch (Exception e) {
|
|
GLib.ExceptionManager.RaiseUnhandledException (e, true);
|
|
// NOTREACHED: Above call does not return.
|
|
throw e;
|
|
}
|
|
}
|
|
|
|
bool release_on_call = false;
|
|
GCHandle gch;
|
|
|
|
public void PersistUntilCalled ()
|
|
{
|
|
release_on_call = true;
|
|
gch = GCHandle.Alloc (this);
|
|
}
|
|
|
|
internal MemoryShareFunctionNative NativeDelegate;
|
|
Gst.MemoryShareFunction managed;
|
|
|
|
public MemoryShareFunctionWrapper (Gst.MemoryShareFunction managed)
|
|
{
|
|
this.managed = managed;
|
|
if (managed != null)
|
|
NativeDelegate = new MemoryShareFunctionNative (NativeCallback);
|
|
}
|
|
|
|
public static Gst.MemoryShareFunction GetManagedDelegate (MemoryShareFunctionNative native)
|
|
{
|
|
if (native == null)
|
|
return null;
|
|
MemoryShareFunctionWrapper wrapper = (MemoryShareFunctionWrapper) native.Target;
|
|
if (wrapper == null)
|
|
return null;
|
|
return wrapper.managed;
|
|
}
|
|
}
|
|
#endregion
|
|
}
|