Home
last modified time | relevance | path

Searched refs:CurrentParams (Results 1 – 9 of 9) sorted by relevance

/frameworks/av/media/libeffects/lvm/lib/Reverb/src/
DLVREV_ApplyNewSettings.cpp74 if((pPrivate->NewParams.HPF != pPrivate->CurrentParams.HPF) || in LVREV_ApplyNewSettings()
75 (pPrivate->NewParams.SampleRate != pPrivate->CurrentParams.SampleRate) || in LVREV_ApplyNewSettings()
93 if((pPrivate->NewParams.LPF != pPrivate->CurrentParams.LPF) || in LVREV_ApplyNewSettings()
94 (pPrivate->NewParams.SampleRate != pPrivate->CurrentParams.SampleRate) || in LVREV_ApplyNewSettings()
125 if( pPrivate->NewParams.RoomSize != pPrivate->CurrentParams.RoomSize) in LVREV_ApplyNewSettings()
138 if( (pPrivate->NewParams.RoomSize != pPrivate->CurrentParams.RoomSize) || in LVREV_ApplyNewSettings()
139 (pPrivate->NewParams.SampleRate != pPrivate->CurrentParams.SampleRate) || in LVREV_ApplyNewSettings()
238 if( (pPrivate->NewParams.Damping != pPrivate->CurrentParams.Damping) || in LVREV_ApplyNewSettings()
239 (pPrivate->NewParams.SampleRate != pPrivate->CurrentParams.SampleRate) || in LVREV_ApplyNewSettings()
283 if( (pPrivate->NewParams.RoomSize != pPrivate->CurrentParams.RoomSize) || in LVREV_ApplyNewSettings()
[all …]
DLVREV_Process.cpp100 if (pLVREV_Private->CurrentParams.OperatingMode == LVM_MODE_OFF) in LVREV_Process()
107 if(pLVREV_Private->CurrentParams.SourceFormat == LVM_MONO){ in LVREV_Process()
121 if (pLVREV_Private->CurrentParams.SourceFormat != LVM_MONO) in LVREV_Process()
212 if(pPrivate->CurrentParams.SourceFormat == LVM_MONO) in ReverbBlock()
DLVREV_GetInstanceHandle.cpp252 pLVREV_Private->CurrentParams.SampleRate = LVM_FS_INVALID; in LVREV_GetInstanceHandle()
253 pLVREV_Private->CurrentParams.OperatingMode = LVM_MODE_DUMMY; in LVREV_GetInstanceHandle()
254 pLVREV_Private->CurrentParams.SourceFormat = LVM_SOURCE_DUMMY; in LVREV_GetInstanceHandle()
DLVREV_Private.h127 LVREV_ControlParams_st CurrentParams; /* Parameters being used */ member
/frameworks/av/media/libeffects/lvm/lib/SpectrumAnalyzer/src/
DLVPSA_Control.cpp109 pParams->Fs = pLVPSA_Inst->CurrentParams.Fs; in LVPSA_GetControlParams()
110 pParams->LevelDetectionSpeed = pLVPSA_Inst->CurrentParams.LevelDetectionSpeed; in LVPSA_GetControlParams()
184 if(Params.Fs != pInst->CurrentParams.Fs) in LVPSA_ApplyNewSettings()
186 pInst->CurrentParams.Fs = Params.Fs; in LVPSA_ApplyNewSettings()
189 … Freq = (LVM_UINT16) ((LVPSA_SampleRateTab[pInst->CurrentParams.Fs]>>1) / (pInst->nBands + 1)); in LVPSA_ApplyNewSettings()
200 …if(pInst->pFiltersParams[ii-1].CenterFrequency < (LVPSA_SampleRateTab[pInst->CurrentParams.Fs]>>1)) in LVPSA_ApplyNewSettings()
225 if(Params.LevelDetectionSpeed != pInst->CurrentParams.LevelDetectionSpeed) in LVPSA_ApplyNewSettings()
231 pInst->CurrentParams = pInst->NewParams; in LVPSA_ApplyNewSettings()
DLVPSA_Init.cpp117 pLVPSA_Inst->CurrentParams.Fs = LVM_FS_DUMMY; in LVPSA_Init()
118 pLVPSA_Inst->CurrentParams.LevelDetectionSpeed = LVPSA_SPEED_DUMMY; in LVPSA_Init()
DLVPSA_Private.h83 …LVPSA_ControlParams_t CurrentParams; /* Current control parameters of t… member
DLVPSA_QPD_Process.cpp165 (pLVPSA_Inst->CurrentParams.Fs == LVM_FS_11025)) in LVPSA_QPD_Process_Float()
DLVPSA_Process.cpp137 (LVM_INT32)LVPSA_SampleRateInvTab[pLVPSA_Inst->CurrentParams.Fs], in LVPSA_Process()