audio_manager_device_audio_config_t

Audio configuration settings for the specified audio device.

Synopsis:

typedef struct  {
    int num_out_channels ;
    int num_in_channels ;
    audio_manager_channel_t channel_order [AUDIO_CHANNEL_COUNT];
    audio_manager_channel_config_t channel_config_mask ;
}audio_manager_device_audio_config_t;

Since:

BlackBerry 10.0.0

Data:

int num_out_channels
The number of output channels that are supported.
int num_in_channels
The number of input channels that are supported.
audio_manager_channel_t channel_order[AUDIO_CHANNEL_COUNT]
The output channels of the audio device.

The channels are listed in the order in which they ware setup.

audio_manager_channel_config_t channel_config_mask
The channel configuration of the audio device.

Library:

libaudio_manager (For the qcc command, use the -l audio_manager option to link against this library)

Description:

This structure defines the audio configuration an audio device.