Home | History | Annotate | Download | only in audiopolicy

Lines Matching defs:config

84     audio_config_t config = AUDIO_CONFIG_INITIALIZER;
85 config.sample_rate = *pSamplingRate;
86 config.format = *pFormat;
87 config.channel_mask = *pChannelMask;
89 config.offload_info = *offloadInfo;
92 status_t status = af->openOutput(module, &output, &config, pDevices,
95 *pSamplingRate = config.sample_rate;
96 *pFormat = config.format;
97 *pChannelMask = config.channel_mask;
99 *((audio_offload_info_t *)offloadInfo) = config.offload_info;
191 audio_config_t config = AUDIO_CONFIG_INITIALIZER;;
192 config.sample_rate = *pSamplingRate;
193 config.format = *pFormat;
194 config.channel_mask = *pChannelMask;
196 status_t status = af->openInput(module, &input, &config, pDevices,
199 *pSamplingRate = config.sample_rate;
200 *pFormat = config.format;
201 *pChannelMask = config.channel_mask;