userMuteVideo property

  1. @deprecated
UidWithMutedCallback? userMuteVideo
getter/setter pair

Occurs when a remote user stops/resumes sending the video stream.

Deprecated This callback is deprecated. Use the RtcEngineEventHandler.remoteVideoStateChanged callback with the following parameters for the same function:

The SDK triggers this callback when the remote user stops or resumes sending the video stream by calling the RtcEngine.muteLocalVideoStream method.

Note

  • This callback is invalid when the number of users or broadcasters in the channel exceeds 17.

The UidWithMutedCallback typedef includes the following parameters:

  • int uid: ID of the remote user.
  • bool muted: Whether the remote user's video stream playback pauses/resumes:
    • true: Pause.
    • false: Resume.

Implementation

@deprecated
UidWithMutedCallback? userMuteVideo;