Example #1
0
 public void setConferenceVideoWindow(PortSipLib sipLib, PortSIPVideoRenderer renderer)
 {
     foreach (Session session in sessions)
     {
         if (session.state == CALL_STATE_FLAG.CONNECTED)
         {
             sipLib.setRemoteVideoWindow(session.SessionID, null);
         }
     }
     sipLib.setConferenceVideoWindow(renderer);
 }
Example #2
0
 public int setConferenceVideoWindow(PortSIPVideoRenderer videoWindow)
 {
     return(sdk.SetConferenceVideoWindow(videoWindow));
 }
Example #3
0
 public int createVideoConference(PortSIPVideoRenderer conferenceVideoWindow, int width, int height, bool displayLocalVideoInConference)
 {
     return(sdk.CreateVideoConference(conferenceVideoWindow, width, height, displayLocalVideoInConference));
 }
Example #4
0
 public int setRemoteVideoWindow(long sessionId, PortSIPVideoRenderer remoteVideoWindow)
 {
     return(sdk.SetRemoteVideoWindow(sessionId, remoteVideoWindow));
 }
Example #5
0
 //Android functions
 public void setLocalVideoWindow(PortSIPVideoRenderer localVideoWindow)
 {
     sdk.SetLocalVideoWindow(localVideoWindow);
 }