Mute a local microphone device
How to mute or unmute a local microphone device.
Read time 1 minuteLast updated 20 hours ago
To mute or unmute a local microphone device, use the
vx_req_connector_mute_local_micThevx_req_connector_mute_local_mic_t* reqStruct;vx_req_connector_mute_local_mic_create(&reqStruct);reqStruct->connector_handle = vx_strdup(“connector handle”);reqStruct->mute_level = 1; // 1 - mute, 0 - unmutereqStruct->account_handle = vx_strdup(“account handle”); // OPTIONALint ret = vx_issue_request3((vx_req_base_t*) reqStruct);
account_handlevx_req_account_anonymous_login