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