コード例 #1
0
 public uint SendGetParameterCommand(MediaSession session, RTSPClient.ResponseHandler responseHandler, string parameterName, Authenticator authenticator)
 {
     return(impl.sendGetParameterCommand(Native, session, new WeakDelegate <RTSPClient.ResponseHandler>(responseHandler), parameterName, authenticator));
 }
コード例 #2
0
 public uint SendTeardownCommand(MediaSession session, RTSPClient.ResponseHandler responseHandler, Authenticator authenticator)
 {
     return(impl.sendTeardownCommand(Native, session, new WeakDelegate <RTSPClient.ResponseHandler>(responseHandler), authenticator));
 }
コード例 #3
0
 public uint SendPlayCommand(MediaSession session, RTSPClient.ResponseHandler responseHandler, double start, double end, float scale, Authenticator authenticator)
 {
     return(impl.sendPlayCommand(Native, session, new WeakDelegate <RTSPClient.ResponseHandler>(responseHandler), start, end, scale, authenticator));
 }
コード例 #4
0
 protected MediaSubsession(MediaSession parent)
 {
     __cxxi_LayoutClass();
     Native = impl.MediaSubsession(impl.Alloc(this), parent);
 }
コード例 #5
0
 public MediaSubsessionIterator(MediaSession session)
 {
     __cxxi_LayoutClass();
     Native = impl.MediaSubsessionIterator(impl.Alloc(this), session);
 }
コード例 #6
0
 public static uint LookupByName(UsageEnvironment env, string sourceName, MediaSession resultSession)
 {
     return(impl.lookupByName(env, sourceName, resultSession));
 }