Documentation

Support

Vivox Core SDK

Vivox Core SDK

vx_resp_connector_get_local_audio_info

Learn about audio management.
Read time 1 minuteLast updated 13 days ago

Module: Audio Devices The response for vx_req_connector_get_local_audio_info. More...
#include <VxcResponses.h>

Public Attributes

Name

vx_resp_base_tbase
The common properties for all responses.
intspeaker_volume
The level of the speaker audio.
intis_speaker_muted
A number, which is either true (mute) or false (unmute).
intmic_volume
The level of the microphone audio.
intis_mic_muted
A number, which is either 1 (mute) or 0 (unmute).

Detailed Description

struct vx_resp_connector_get_local_audio_info;
The response for vx_req_connector_get_local_audio_info. See: vx_req_connector_get_local_audio_info

Public Attributes Documentation

variable base

vx_resp_base_t base;
The common properties for all responses.

variable speaker_volume

int speaker_volume;
The level of the speaker audio. This is a non-negative integer value between 0 and 100 (inclusive). The default value is 50, in which no gain is applied to the audio. When this value is 0, no speaker audio is rendered.

variable is_speaker_muted

int is_speaker_muted;
A number, which is either true (mute) or false (unmute).

variable mic_volume

int mic_volume;
The level of the microphone audio. This is a non-negative integer value between 0 and 100 (inclusive). The default value is 50, in which no gain is applied to the audio. When this value is 0, no microphone audio is rendered.

variable is_mic_muted

int is_mic_muted;
A number, which is either 1 (mute) or 0 (unmute).