OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:pLVREV_Private
(Results
1 - 7
of
7
) sorted by null
/frameworks/av/media/libeffects/lvm/lib/Reverb/src/
LVREV_GetInstanceHandle.c
58
LVREV_Instance_st *
pLVREV_Private
;
123
pLVREV_Private
=(LVREV_Instance_st *)*phInstance;
124
pLVREV_Private
->MemoryTable = *pMemoryTable;
148
pLVREV_Private
->pFastData = InstAlloc_AddMember(&FastData, sizeof(LVREV_FastData_st)); /* Fast data memory base address */
152
pLVREV_Private
->pDelay_T[3] = InstAlloc_AddMember(&FastData, LVREV_MAX_T3_DELAY * sizeof(LVM_INT32));
153
pLVREV_Private
->pDelay_T[2] = InstAlloc_AddMember(&FastData, LVREV_MAX_T2_DELAY * sizeof(LVM_INT32));
154
pLVREV_Private
->pDelay_T[1] = InstAlloc_AddMember(&FastData, LVREV_MAX_T1_DELAY * sizeof(LVM_INT32));
155
pLVREV_Private
->pDelay_T[0] = InstAlloc_AddMember(&FastData, LVREV_MAX_T0_DELAY * sizeof(LVM_INT32));
159
pLVREV_Private
->pScratchDelayLine[i] = InstAlloc_AddMember(&Temporary, sizeof(LVM_INT32) * MaxBlockSize); /* Scratch for each delay line output */
162
LoadConst_32(0,
pLVREV_Private
->pDelay_T[3] ,(LVM_INT16)LVREV_MAX_T3_DELAY)
[
all
...]
LVREV_ClearAudioBuffers.c
48
LVREV_Instance_st *
pLVREV_Private
= (LVREV_Instance_st *)hInstance;
66
(void *)&
pLVREV_Private
->pFastData->HPTaps, /* Destination Cast to void: no dereferencing in function*/
69
(void *)&
pLVREV_Private
->pFastData->LPTaps, /* Destination Cast to void: no dereferencing in function*/
72
if((LVM_UINT16)
pLVREV_Private
->InstanceParams.NumDelays == LVREV_DELAYLINES_4)
74
LoadConst_32(0, (LVM_INT32 *)&
pLVREV_Private
->pFastData->RevLPTaps[3], 2);
75
LoadConst_32(0, (LVM_INT32 *)&
pLVREV_Private
->pFastData->RevLPTaps[2], 2);
76
LoadConst_32(0, (LVM_INT32 *)&
pLVREV_Private
->pFastData->RevLPTaps[1], 2);
77
LoadConst_32(0, (LVM_INT32 *)&
pLVREV_Private
->pFastData->RevLPTaps[0], 2);
79
LoadConst_32(0,
pLVREV_Private
->pDelay_T[3], (LVM_INT16)LVREV_MAX_T3_DELAY);
80
LoadConst_32(0,
pLVREV_Private
->pDelay_T[2], (LVM_INT16)LVREV_MAX_T2_DELAY)
[
all
...]
LVREV_GetControlParameters.c
50
LVREV_Instance_st *
pLVREV_Private
= (LVREV_Instance_st *)hInstance;
64
*pControlParams =
pLVREV_Private
->NewParams;
LVREV_SetControlParameters.c
49
LVREV_Instance_st *
pLVREV_Private
= (LVREV_Instance_st *)hInstance;
113
pLVREV_Private
->NewParams = *pNewParams;
114
pLVREV_Private
->bControlPending = LVM_TRUE;
LVREV_Process.c
54
LVREV_Instance_st *
pLVREV_Private
= (LVREV_Instance_st *)hInstance;
73
if(
pLVREV_Private
->bControlPending == LVM_TRUE)
80
pLVREV_Private
->bControlPending = LVM_FALSE;
82
errorCode = LVREV_ApplyNewSettings (
pLVREV_Private
);
101
if (
pLVREV_Private
->CurrentParams.OperatingMode == LVM_MODE_OFF)
109
if(
pLVREV_Private
->CurrentParams.SourceFormat == LVM_MONO){
123
if (
pLVREV_Private
->CurrentParams.SourceFormat != LVM_MONO)
134
if(RemainingSamples >
pLVREV_Private
->MaxBlkLen)
136
SamplesToProcess =
pLVREV_Private
->MaxBlkLen;
145
ReverbBlock(pInput, pOutput,
pLVREV_Private
, (LVM_UINT16)SamplesToProcess)
[
all
...]
LVREV_GetMemoryTable.c
232
LVREV_Instance_st *
pLVREV_Private
= (LVREV_Instance_st *)hInstance;
238
*pMemoryTable =
pLVREV_Private
->MemoryTable;
LVREV_ApplyNewSettings.c
620
LVREV_Instance_st *
pLVREV_Private
= (LVREV_Instance_st *)pCallbackData;
633
pLVREV_Private
->CurrentParams.OperatingMode = LVM_MODE_OFF;
634
pLVREV_Private
->bDisableReverb = LVM_TRUE;
Completed in 1712 milliseconds