Package com.sinch.android.rtc.video
Interface VideoCallListener
-
- All Implemented Interfaces:
-
com.sinch.android.rtc.calling.CallListener
public interface VideoCallListener implements CallListener
Represents a listener for Call events connected with a video call. This listener will be notified about same events as usual CallListener and extra ones connected with video specific functionalities. The listener can be added by invoking same Call.addCallListener method as for usual audio-only call.
-
-
Method Summary
Modifier and Type Method Description abstract UnitonVideoTrackAdded(Call call)Called when a Video track has been added to the call. abstract UnitonVideoTrackPaused(Call call)Called when a Video track has been paused by the remote participant. abstract UnitonVideoTrackResumed(Call call)Called when a Video track has been resumed by the remote participant. -
-
Method Detail
-
onVideoTrackAdded
abstract Unit onVideoTrackAdded(Call call)
Called when a Video track has been added to the call. To get the local preview and the remote stream, see VideoController.remoteView and VideoController.localView.
- Parameters:
call- The call that had video tracks added.
-
onVideoTrackPaused
abstract Unit onVideoTrackPaused(Call call)
Called when a Video track has been paused by the remote participant.
- Parameters:
call- The call that had video tracks paused.
-
onVideoTrackResumed
abstract Unit onVideoTrackResumed(Call call)
Called when a Video track has been resumed by the remote participant.
- Parameters:
call- The call that had video tracks resumed.
-
-
-
-