• Home
  • Raw
  • Download

Lines Matching refs:pBundledContext

202   LvmStatus = LVM_GetMemoryTable(pContext->pBundledContext->hInstance, &MemTab,  in LvmEffect_free()
262 if (pContext->pBundledContext->hInstance != NULL) { in LvmBundle_init()
340 pContext->pBundledContext->hInstance = LVM_NULL; in LvmBundle_init()
343 LvmStatus = LVM_GetInstanceHandle(&pContext->pBundledContext->hInstance, in LvmBundle_init()
361 pContext->pBundledContext->SampleRate = LVM_FS_44100; in LvmBundle_init()
408 LVM_SetControlParameters(pContext->pBundledContext->hInstance, params); in LvmBundle_init()
428 LvmStatus = LVM_SetHeadroomParams(pContext->pBundledContext->hInstance, in LvmBundle_init()
445 pContext->pBundledContext = NULL; in lvmCreate()
446 pContext->pBundledContext = (BundledEffectContext *)malloc(sizeof(struct BundledEffectContext)); in lvmCreate()
447 if (NULL == pContext->pBundledContext) { in lvmCreate()
451 pContext->pBundledContext->SessionNo = 0; in lvmCreate()
452 pContext->pBundledContext->SessionId = 0; in lvmCreate()
453 pContext->pBundledContext->hInstance = NULL; in lvmCreate()
454 pContext->pBundledContext->bVolumeEnabled = LVM_FALSE; in lvmCreate()
455 pContext->pBundledContext->bEqualizerEnabled = LVM_FALSE; in lvmCreate()
456 pContext->pBundledContext->bBassEnabled = LVM_FALSE; in lvmCreate()
457 pContext->pBundledContext->bBassTempDisabled = LVM_FALSE; in lvmCreate()
458 pContext->pBundledContext->bVirtualizerEnabled = LVM_FALSE; in lvmCreate()
459 pContext->pBundledContext->bVirtualizerTempDisabled = LVM_FALSE; in lvmCreate()
460 pContext->pBundledContext->nOutputDevice = AUDIO_DEVICE_NONE; in lvmCreate()
461 pContext->pBundledContext->nVirtualizerForcedDevice = AUDIO_DEVICE_NONE; in lvmCreate()
462 pContext->pBundledContext->NumberEffectsEnabled = 0; in lvmCreate()
463 pContext->pBundledContext->NumberEffectsCalled = 0; in lvmCreate()
464 pContext->pBundledContext->firstVolume = LVM_TRUE; in lvmCreate()
465 pContext->pBundledContext->volume = 0; in lvmCreate()
473 pContext->pBundledContext->BassStrengthSaved = 0; in lvmCreate()
474 pContext->pBundledContext->VirtStrengthSaved = 0; in lvmCreate()
475 pContext->pBundledContext->CurPreset = PRESET_CUSTOM; in lvmCreate()
476 pContext->pBundledContext->levelSaved = 0; in lvmCreate()
477 pContext->pBundledContext->bMuteEnabled = LVM_FALSE; in lvmCreate()
478 pContext->pBundledContext->bStereoPositionEnabled = LVM_FALSE; in lvmCreate()
479 pContext->pBundledContext->positionSaved = 0; in lvmCreate()
480 pContext->pBundledContext->workBuffer = NULL; in lvmCreate()
481 pContext->pBundledContext->frameCount = -1; in lvmCreate()
482 pContext->pBundledContext->SamplesToExitCountVirt = 0; in lvmCreate()
483 pContext->pBundledContext->SamplesToExitCountBb = 0; in lvmCreate()
484 pContext->pBundledContext->SamplesToExitCountEq = 0; in lvmCreate()
486 pContext->pBundledContext->pInputBuffer = NULL; in lvmCreate()
487 pContext->pBundledContext->pOutputBuffer = NULL; in lvmCreate()
490 pContext->pBundledContext->bandGaindB[i] = EQNB_5BandSoftPresets[i]; in lvmCreate()
605 LVM_SetControlParameters(pContext->pBundledContext->hInstance, params); in lvmControl()
610 LvmStatus = LVM_ApplyNewSettings(pContext->pBundledContext->hInstance); in lvmControl()
621 LVM_Process(pContext->pBundledContext->hInstance, /* Instance handle */ in lvmExecute()
817 if (context.pBundledContext != nullptr) { in main()
818 if (context.pBundledContext->hInstance != nullptr) { in main()
821 free(context.pBundledContext); in main()