public Gst.Sdp.MIKEYPayload FindPayload(Gst.Sdp.MIKEYPayloadType type, uint nth)
        {
            IntPtr raw_ret = gst_mikey_message_find_payload(Handle, (int)type, nth);

            Gst.Sdp.MIKEYPayload ret = raw_ret == IntPtr.Zero ? null : (Gst.Sdp.MIKEYPayload)GLib.Opaque.GetOpaque(raw_ret, typeof(Gst.Sdp.MIKEYPayload), false);
            return(ret);
        }
Beispiel #2
0
 public MIKEYPayload(Gst.Sdp.MIKEYPayloadType type)
 {
     Raw = gst_mikey_payload_new((int)type);
 }