![]() |
PortSIP VoIP SDK Manual for Android
16.2
PortSIP features our newest, supported, quality-assured VoIP SDK used by Several hundred companies around the world for easy VoIP application develop and quality-assured code.
|
Functions | |
int | com.portsip.PortSipSdk.createAudioConference () |
int | com.portsip.PortSipSdk.createVideoConference (PortSIPVideoRenderer conferenceVideoWindow, int videoWidth, int videoHeight, boolean displayLocalVideoInConference) |
void | com.portsip.PortSipSdk.destroyConference () |
int | com.portsip.PortSipSdk.setConferenceVideoWindow (PortSIPVideoRenderer conferenceVideoWindow) |
int | com.portsip.PortSipSdk.joinToConference (long sessionId) |
int | com.portsip.PortSipSdk.removeFromConference (long sessionId) |
int com.portsip.PortSipSdk.createAudioConference | ( | ) |
Create an audio conference. It will fail if the existing conference is not ended yet.
int com.portsip.PortSipSdk.createVideoConference | ( | PortSIPVideoRenderer | conferenceVideoWindow, |
int | videoWidth, | ||
int | videoHeight, | ||
boolean | displayLocalVideoInConference | ||
) |
Create a video conference. It will fail if the existing conference is not ended yet.
conferenceVideoWindow | SurfaceView The window used for displaying the conference video. |
videoWidth | Width of conference video resolution |
videoHeight | Height of conference video resolution |
displayLocalVideoInConference | Display local video during conference |
void com.portsip.PortSipSdk.destroyConference | ( | ) |
End the exist conference.
int com.portsip.PortSipSdk.setConferenceVideoWindow | ( | PortSIPVideoRenderer | conferenceVideoWindow | ) |
Set the window for a conference that is used for displaying the received remote video image.
conferenceVideoWindow | SurfaceView The window which is used for displaying the conference video |
int com.portsip.PortSipSdk.joinToConference | ( | long | sessionId | ) |
Join a session into existing conference. If the call is in hold, it will be un-hold automatically.
sessionId | Session ID of the call. |
int com.portsip.PortSipSdk.removeFromConference | ( | long | sessionId | ) |
Remove a session from an existing conference.
sessionId | Session ID of the call. |