Home | History | Annotate | Download | only in loudness

Lines Matching defs:mCompressor

59     le_fx::AdaptiveDynamicRangeCompression* mCompressor;
70 if (pContext->mCompressor != NULL) {
73 pContext->mCompressor->Initialize(targetAmp, pContext->mConfig.inputCfg.samplingRate);
177 if (pContext->mCompressor == NULL) {
178 pContext->mCompressor = new le_fx::AdaptiveDynamicRangeCompression();
179 pContext->mCompressor->Initialize(targetAmp, pContext->mConfig.inputCfg.samplingRate);
212 pContext->mCompressor = NULL;
238 if (pContext->mCompressor != NULL) {
239 delete pContext->mCompressor;
240 pContext->mCompressor = NULL;
290 pContext->mCompressor->Compress(&leftSample, &rightSample);