Home | History | Annotate | Download | only in loudness

Lines Matching refs:mConfig

54     effect_config_t mConfig;
73 pContext->mCompressor->Initialize(targetAmp, pContext->mConfig.inputCfg.samplingRate);
112 pContext->mConfig = *pConfig;
136 *pConfig = pContext->mConfig;
156 pContext->mConfig.inputCfg.accessMode = EFFECT_BUFFER_ACCESS_READ;
157 pContext->mConfig.inputCfg.channels = AUDIO_CHANNEL_OUT_STEREO;
158 pContext->mConfig.inputCfg.format = AUDIO_FORMAT_PCM_16_BIT;
159 pContext->mConfig.inputCfg.samplingRate = 44100;
160 pContext->mConfig.inputCfg.bufferProvider.getBuffer = NULL;
161 pContext->mConfig.inputCfg.bufferProvider.releaseBuffer = NULL;
162 pContext->mConfig.inputCfg.bufferProvider.cookie = NULL;
163 pContext->mConfig.inputCfg.mask = EFFECT_CONFIG_ALL;
164 pContext->mConfig.outputCfg.accessMode = EFFECT_BUFFER_ACCESS_ACCUMULATE;
165 pContext->mConfig.outputCfg.channels = AUDIO_CHANNEL_OUT_STEREO;
166 pContext->mConfig.outputCfg.format = AUDIO_FORMAT_PCM_16_BIT;
167 pContext->mConfig.outputCfg.samplingRate = 44100;
168 pContext->mConfig.outputCfg.bufferProvider.getBuffer = NULL;
169 pContext->mConfig.outputCfg.bufferProvider.releaseBuffer = NULL;
170 pContext->mConfig.outputCfg.bufferProvider.cookie = NULL;
171 pContext->mConfig.outputCfg.mask = EFFECT_CONFIG_ALL;
179 pContext->mCompressor->Initialize(targetAmp, pContext->mConfig.inputCfg.samplingRate);
182 LE_setConfig(pContext, &pContext->mConfig);
296 if (pContext->mConfig.outputCfg.accessMode == EFFECT_BUFFER_ACCESS_ACCUMULATE) {