Exemple #1
0
 public AudioFormatPackWrapper(Gst.Audio.AudioFormatPack managed)
 {
     this.managed = managed;
     if (managed != null)
     {
         NativeDelegate = new AudioFormatPackNative(NativeCallback);
     }
 }
Exemple #2
0
        public static Gst.Audio.AudioFormatPack GetManagedDelegate(AudioFormatPackNative native)
        {
            if (native == null)
            {
                return(null);
            }
            AudioFormatPackWrapper wrapper = (AudioFormatPackWrapper)native.Target;

            if (wrapper == null)
            {
                return(null);
            }
            return(wrapper.managed);
        }
Exemple #3
0
 internal AudioFormatPackInvoker(AudioFormatPackNative native_cb, IntPtr data) : this(native_cb, data, null)
 {
 }
Exemple #4
0
 internal AudioFormatPackInvoker(AudioFormatPackNative native_cb, IntPtr data, GLib.DestroyNotify notify)
 {
     this.native_cb = native_cb;
     __data         = data;
     __notify       = notify;
 }
Exemple #5
0
 internal AudioFormatPackInvoker(AudioFormatPackNative native_cb) : this(native_cb, IntPtr.Zero, null)
 {
 }