Lines Matching refs:mConfig
72 effect_config_t mConfig;
145 pContext->mConfig = *pConfig;
169 *pConfig = pContext->mConfig;
187 pContext->mConfig.inputCfg.accessMode = EFFECT_BUFFER_ACCESS_READ;
188 pContext->mConfig.inputCfg.channels = AUDIO_CHANNEL_OUT_STEREO;
189 pContext->mConfig.inputCfg.format = AUDIO_FORMAT_PCM_16_BIT;
190 pContext->mConfig.inputCfg.samplingRate = 44100;
191 pContext->mConfig.inputCfg.bufferProvider.getBuffer = NULL;
192 pContext->mConfig.inputCfg.bufferProvider.releaseBuffer = NULL;
193 pContext->mConfig.inputCfg.bufferProvider.cookie = NULL;
194 pContext->mConfig.inputCfg.mask = EFFECT_CONFIG_ALL;
195 pContext->mConfig.outputCfg.accessMode = EFFECT_BUFFER_ACCESS_ACCUMULATE;
196 pContext->mConfig.outputCfg.channels = AUDIO_CHANNEL_OUT_STEREO;
197 pContext->mConfig.outputCfg.format = AUDIO_FORMAT_PCM_16_BIT;
198 pContext->mConfig.outputCfg.samplingRate = 44100;
199 pContext->mConfig.outputCfg.bufferProvider.getBuffer = NULL;
200 pContext->mConfig.outputCfg.bufferProvider.releaseBuffer = NULL;
201 pContext->mConfig.outputCfg.bufferProvider.cookie = NULL;
202 pContext->mConfig.outputCfg.mask = EFFECT_CONFIG_ALL;
209 pContext->mChannelCount = popcount(pContext->mConfig.inputCfg.channels);
219 Visualizer_setConfig(pContext, &pContext->mConfig);
397 if (pContext->mConfig.outputCfg.accessMode == EFFECT_BUFFER_ACCESS_ACCUMULATE) {
560 const uint32_t deltaSmpl = pContext->mConfig.inputCfg.samplingRate * latencyMs / 1000;