Documentation

Support

Vivox Core SDK

Vivox Core SDK

User-to-channel muting

How a user can mute a whole channel.
Read time 1 minuteLast updated a day ago

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_speaker
request.
vx_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);