User-to-channel muting
How a user can mute a whole channel.
阅读时间1 分钟最后更新于 12 天前
A user can mute a whole channel to not hear any participants in that specified channel. To perform this action, use the
vx_req_session_mute_local_speakervx_req_session_mute_local_speaker_t* reqStruct;vx_req_session_mute_local_speaker_create(&reqStruct);reqStruct->session_handle = vx_strdup(“session handle”);reqStruct->mute_level = 1; // 1 - mute, 0 - unmutereqStruct->scope = mute_scope_all;int ret = vx_issue_request3((vx_req_base_t*) reqStruct);