Home | History | Annotate | Download | only in loudness

Lines Matching defs:mCompressor

63     le_fx::AdaptiveDynamicRangeCompression* mCompressor;
74 if (pContext->mCompressor != NULL) {
77 pContext->mCompressor->Initialize(targetAmp, pContext->mConfig.inputCfg.samplingRate);
181 if (pContext->mCompressor == NULL) {
182 pContext->mCompressor = new le_fx::AdaptiveDynamicRangeCompression();
183 pContext->mCompressor->Initialize(targetAmp, pContext->mConfig.inputCfg.samplingRate);
215 pContext->mCompressor = NULL;
241 if (pContext->mCompressor != NULL) {
242 delete pContext->mCompressor;
243 pContext->mCompressor = NULL;
293 pContext->mCompressor->Compress(&leftSample, &rightSample);