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); }
public int setConferenceVideoWindow(PortSIPVideoRenderer videoWindow) { return(sdk.SetConferenceVideoWindow(videoWindow)); }
public int createVideoConference(PortSIPVideoRenderer conferenceVideoWindow, int width, int height, bool displayLocalVideoInConference) { return(sdk.CreateVideoConference(conferenceVideoWindow, width, height, displayLocalVideoInConference)); }
public int setRemoteVideoWindow(long sessionId, PortSIPVideoRenderer remoteVideoWindow) { return(sdk.SetRemoteVideoWindow(sessionId, remoteVideoWindow)); }
//Android functions public void setLocalVideoWindow(PortSIPVideoRenderer localVideoWindow) { sdk.SetLocalVideoWindow(localVideoWindow); }