Searched refs:pLVREV_Private (Results 1 – 7 of 7) sorted by relevance
/frameworks/av/media/libeffects/lvm/lib/Reverb/src/ |
D | LVREV_GetInstanceHandle.c | 58 LVREV_Instance_st *pLVREV_Private; in LVREV_GetInstanceHandle() local 123 pLVREV_Private =(LVREV_Instance_st *)*phInstance; in LVREV_GetInstanceHandle() 124 pLVREV_Private->MemoryTable = *pMemoryTable; in LVREV_GetInstanceHandle() 148 …pLVREV_Private->pFastData = InstAlloc_AddMember(&FastData, sizeof(LVREV_FastData_st)); … in LVREV_GetInstanceHandle() 152 …pLVREV_Private->pDelay_T[3] = InstAlloc_AddMember(&FastData, LVREV_MAX_T3_DELAY * sizeof(LVM_… in LVREV_GetInstanceHandle() 153 …pLVREV_Private->pDelay_T[2] = InstAlloc_AddMember(&FastData, LVREV_MAX_T2_DELAY * sizeof(LVM_… in LVREV_GetInstanceHandle() 154 …pLVREV_Private->pDelay_T[1] = InstAlloc_AddMember(&FastData, LVREV_MAX_T1_DELAY * sizeof(LVM_I… in LVREV_GetInstanceHandle() 155 …pLVREV_Private->pDelay_T[0] = InstAlloc_AddMember(&FastData, LVREV_MAX_T0_DELAY * sizeof(LVM_I… in LVREV_GetInstanceHandle() 159 …pLVREV_Private->pScratchDelayLine[i] = InstAlloc_AddMember(&Temporary, sizeof(LVM_INT32) * MaxBloc… in LVREV_GetInstanceHandle() 162 LoadConst_32(0,pLVREV_Private->pDelay_T[3] ,(LVM_INT16)LVREV_MAX_T3_DELAY); in LVREV_GetInstanceHandle() [all …]
|
D | LVREV_ClearAudioBuffers.c | 48 LVREV_Instance_st *pLVREV_Private = (LVREV_Instance_st *)hInstance; in LVREV_ClearAudioBuffers() local 66 …(void *)&pLVREV_Private->pFastData->HPTaps, /* Destination Cast to void: no dereferencing in funct… in LVREV_ClearAudioBuffers() 69 …(void *)&pLVREV_Private->pFastData->LPTaps, /* Destination Cast to void: no dereferencing in funct… in LVREV_ClearAudioBuffers() 72 if((LVM_UINT16)pLVREV_Private->InstanceParams.NumDelays == LVREV_DELAYLINES_4) in LVREV_ClearAudioBuffers() 74 LoadConst_32(0, (LVM_INT32 *)&pLVREV_Private->pFastData->RevLPTaps[3], 2); in LVREV_ClearAudioBuffers() 75 LoadConst_32(0, (LVM_INT32 *)&pLVREV_Private->pFastData->RevLPTaps[2], 2); in LVREV_ClearAudioBuffers() 76 LoadConst_32(0, (LVM_INT32 *)&pLVREV_Private->pFastData->RevLPTaps[1], 2); in LVREV_ClearAudioBuffers() 77 LoadConst_32(0, (LVM_INT32 *)&pLVREV_Private->pFastData->RevLPTaps[0], 2); in LVREV_ClearAudioBuffers() 79 LoadConst_32(0,pLVREV_Private->pDelay_T[3], (LVM_INT16)LVREV_MAX_T3_DELAY); in LVREV_ClearAudioBuffers() 80 LoadConst_32(0,pLVREV_Private->pDelay_T[2], (LVM_INT16)LVREV_MAX_T2_DELAY); in LVREV_ClearAudioBuffers() [all …]
|
D | LVREV_Process.c | 54 LVREV_Instance_st *pLVREV_Private = (LVREV_Instance_st *)hInstance; in LVREV_Process() local 73 if(pLVREV_Private->bControlPending == LVM_TRUE) in LVREV_Process() 80 pLVREV_Private->bControlPending = LVM_FALSE; in LVREV_Process() 82 errorCode = LVREV_ApplyNewSettings (pLVREV_Private); in LVREV_Process() 101 if (pLVREV_Private->CurrentParams.OperatingMode == LVM_MODE_OFF) in LVREV_Process() 109 if(pLVREV_Private->CurrentParams.SourceFormat == LVM_MONO){ in LVREV_Process() 123 if (pLVREV_Private->CurrentParams.SourceFormat != LVM_MONO) in LVREV_Process() 134 if(RemainingSamples > pLVREV_Private->MaxBlkLen) in LVREV_Process() 136 SamplesToProcess = pLVREV_Private->MaxBlkLen; in LVREV_Process() 145 ReverbBlock(pInput, pOutput, pLVREV_Private, (LVM_UINT16)SamplesToProcess); in LVREV_Process()
|
D | LVREV_SetControlParameters.c | 49 LVREV_Instance_st *pLVREV_Private = (LVREV_Instance_st *)hInstance; in LVREV_SetControlParameters() local 113 pLVREV_Private->NewParams = *pNewParams; in LVREV_SetControlParameters() 114 pLVREV_Private->bControlPending = LVM_TRUE; in LVREV_SetControlParameters()
|
D | LVREV_GetControlParameters.c | 50 LVREV_Instance_st *pLVREV_Private = (LVREV_Instance_st *)hInstance; in LVREV_GetControlParameters() local 64 *pControlParams = pLVREV_Private->NewParams; in LVREV_GetControlParameters()
|
D | LVREV_GetMemoryTable.c | 232 LVREV_Instance_st *pLVREV_Private = (LVREV_Instance_st *)hInstance; in LVREV_GetMemoryTable() local 238 *pMemoryTable = pLVREV_Private->MemoryTable; in LVREV_GetMemoryTable()
|
D | LVREV_ApplyNewSettings.c | 620 LVREV_Instance_st *pLVREV_Private = (LVREV_Instance_st *)pCallbackData; in BypassMixer_Callback() local 633 pLVREV_Private->CurrentParams.OperatingMode = LVM_MODE_OFF; in BypassMixer_Callback() 634 pLVREV_Private->bDisableReverb = LVM_TRUE; in BypassMixer_Callback()
|