Exemplo n.º 1
0
 protected RTPSource(UsageEnvironment env, Groupsock RTPgs, char rtpPayloadFormat, uint rtpTimestampFrequency)
     : base(impl.TypeInfo)
 {
     __cxxi_LayoutClass();
     Native = impl.RTPSource(impl.Alloc(this), env, RTPgs, rtpPayloadFormat, rtpTimestampFrequency);
 }
Exemplo n.º 2
0
 protected RTPSink(UsageEnvironment env, Groupsock rtpGS, char rtpPayloadType, uint rtpTimestampFrequency, string rtpPayloadFormatName, uint numChannels)
     : base(impl.TypeInfo)
 {
     __cxxi_LayoutClass();
     Native = impl.RTPSink(impl.Alloc(this), env, rtpGS, rtpPayloadType, rtpTimestampFrequency, rtpPayloadFormatName, numChannels);
 }
Exemplo n.º 3
0
 protected RTCPInstance(UsageEnvironment env, Groupsock RTPgs, uint totSessionBW, string cname, RTPSink sink, RTPSource source, uint isSSMSource)
     : base(impl.TypeInfo)
 {
     __cxxi_LayoutClass();
     Native = impl.RTCPInstance(impl.Alloc(this), env, RTPgs, totSessionBW, cname, sink, source, isSSMSource);
 }
Exemplo n.º 4
0
 public RTPInterface(Medium owner, Groupsock gs)
 {
     __cxxi_LayoutClass();
     Native = impl.RTPInterface(impl.Alloc(this), owner, gs);
 }
Exemplo n.º 5
0
 public static RTCPInstance CreateNew(UsageEnvironment env, Groupsock RTCPgs, uint totSessionBW, string cname, RTPSink sink, RTPSource source, uint isSSMSource)
 {
     return(impl.createNew(env, RTCPgs, totSessionBW, cname, sink, source, isSSMSource));
 }