Lines Matching refs:pBundledContext

229     if (pContext->pBundledContext->hInstance != NULL) {  in LvmBundle_init()
232 LVM_DelInstanceHandle(&pContext->pBundledContext->hInstance); in LvmBundle_init()
250 LvmStatus = LVM_GetInstanceHandle(&pContext->pBundledContext->hInstance, &InstParams); in LvmBundle_init()
266 pContext->pBundledContext->SampleRate = LVM_FS_44100; in LvmBundle_init()
308 LvmStatus = LVM_SetControlParameters(pContext->pBundledContext->hInstance, params); in LvmBundle_init()
327 LvmStatus = LVM_SetHeadroomParams(pContext->pBundledContext->hInstance, &HeadroomParams); in LvmBundle_init()
341 pContext->pBundledContext = NULL; in lvmCreate()
342 pContext->pBundledContext = (BundledEffectContext*)malloc(sizeof(struct BundledEffectContext)); in lvmCreate()
343 if (NULL == pContext->pBundledContext) { in lvmCreate()
347 pContext->pBundledContext->SessionNo = 0; in lvmCreate()
348 pContext->pBundledContext->SessionId = 0; in lvmCreate()
349 pContext->pBundledContext->hInstance = NULL; in lvmCreate()
350 pContext->pBundledContext->bVolumeEnabled = LVM_FALSE; in lvmCreate()
351 pContext->pBundledContext->bEqualizerEnabled = LVM_FALSE; in lvmCreate()
352 pContext->pBundledContext->bBassEnabled = LVM_FALSE; in lvmCreate()
353 pContext->pBundledContext->bBassTempDisabled = LVM_FALSE; in lvmCreate()
354 pContext->pBundledContext->bVirtualizerEnabled = LVM_FALSE; in lvmCreate()
355 pContext->pBundledContext->bVirtualizerTempDisabled = LVM_FALSE; in lvmCreate()
356 pContext->pBundledContext->nOutputDevice = AUDIO_DEVICE_NONE; in lvmCreate()
357 pContext->pBundledContext->nVirtualizerForcedDevice = AUDIO_DEVICE_NONE; in lvmCreate()
358 pContext->pBundledContext->NumberEffectsEnabled = 0; in lvmCreate()
359 pContext->pBundledContext->NumberEffectsCalled = 0; in lvmCreate()
360 pContext->pBundledContext->firstVolume = LVM_TRUE; in lvmCreate()
361 pContext->pBundledContext->volume = 0; in lvmCreate()
369 pContext->pBundledContext->BassStrengthSaved = 0; in lvmCreate()
370 pContext->pBundledContext->VirtStrengthSaved = 0; in lvmCreate()
371 pContext->pBundledContext->CurPreset = PRESET_CUSTOM; in lvmCreate()
372 pContext->pBundledContext->levelSaved = 0; in lvmCreate()
373 pContext->pBundledContext->bMuteEnabled = LVM_FALSE; in lvmCreate()
374 pContext->pBundledContext->bStereoPositionEnabled = LVM_FALSE; in lvmCreate()
375 pContext->pBundledContext->positionSaved = 0; in lvmCreate()
376 pContext->pBundledContext->workBuffer = NULL; in lvmCreate()
377 pContext->pBundledContext->frameCount = -1; in lvmCreate()
378 pContext->pBundledContext->SamplesToExitCountVirt = 0; in lvmCreate()
379 pContext->pBundledContext->SamplesToExitCountBb = 0; in lvmCreate()
380 pContext->pBundledContext->SamplesToExitCountEq = 0; in lvmCreate()
382 pContext->pBundledContext->bandGaindB[i] = EQNB_5BandSoftPresets[i]; in lvmCreate()
454 LvmStatus = LVM_SetControlParameters(pContext->pBundledContext->hInstance, params); in lvmControl()
459 LvmStatus = LVM_ApplyNewSettings(pContext->pBundledContext->hInstance); in lvmControl()
469 return LVM_Process(pContext->pBundledContext->hInstance, /* Instance handle */ in lvmExecute()
661 if (context.pBundledContext != nullptr) { in main()
662 if (context.pBundledContext->hInstance != nullptr) { in main()
663 LVM_DelInstanceHandle(&context.pBundledContext->hInstance); in main()
665 free(context.pBundledContext); in main()