firstRemoteVideoDecoded property

  1. @Deprecated('')
VideoFrameWithUidCallback? firstRemoteVideoDecoded
getter/setter pair

Occurs when the first remote video frame is received and decoded. Deprecated: Please use the remoteVideoStateChanged callback with the following parameters: Starting (1). Decoding (2). The SDK triggers this callback under one of the following circumstances: The remote user joins the channel and sends the video stream. The remote user stops sending the video stream and re-sends it after 15 seconds. Reasons for such an interruption include: The remote user leaves the channel. The remote user drops offline. The remote user calls muteLocalVideoStream to stop sending the video stream. The remote user calls disableVideo to disable video.

Param uid The user ID of the remote user sending the video stream.

Param width The width (px) of the video stream.

Param height The height (px) of the video stream.

Param elapsed The time elapsed (ms) from the local user calling joinChannel until the SDK triggers this callback.

Implementation

@Deprecated('')
VideoFrameWithUidCallback? firstRemoteVideoDecoded;