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_t | base The common properties for all responses. |
| int | speaker_volume The level of the speaker audio. |
| int | is_speaker_muted A number, which is either true (mute) or false (unmute). |
| int | mic_volume The level of the microphone audio. |
| int | is_mic_muted A number, which is either 1 (mute) or 0 (unmute). |
Detailed Description
The response for vx_req_connector_get_local_audio_info. See: vx_req_connector_get_local_audio_infostruct vx_resp_connector_get_local_audio_info;
Public Attributes Documentation
variable base
The common properties for all responses.vx_resp_base_t base;
variable 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.int speaker_volume;
variable is_speaker_muted
A number, which is either true (mute) or false (unmute).int is_speaker_muted;
variable 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.int mic_volume;
variable is_mic_muted
A number, which is either 1 (mute) or 0 (unmute).int is_mic_muted;