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.c75 if((pPrivate->NewParams.HPF != pPrivate->CurrentParams.HPF) || in LVREV_ApplyNewSettings()
76 (pPrivate->NewParams.SampleRate != pPrivate->CurrentParams.SampleRate) || in LVREV_ApplyNewSettings()
94 if((pPrivate->NewParams.LPF != pPrivate->CurrentParams.LPF) || in LVREV_ApplyNewSettings()
95 (pPrivate->NewParams.SampleRate != pPrivate->CurrentParams.SampleRate) || in LVREV_ApplyNewSettings()
127 if( pPrivate->NewParams.RoomSize != pPrivate->CurrentParams.RoomSize) in LVREV_ApplyNewSettings()
141 if( (pPrivate->NewParams.RoomSize != pPrivate->CurrentParams.RoomSize) || in LVREV_ApplyNewSettings()
142 (pPrivate->NewParams.SampleRate != pPrivate->CurrentParams.SampleRate) || in LVREV_ApplyNewSettings()
241 if( (pPrivate->NewParams.Damping != pPrivate->CurrentParams.Damping) || in LVREV_ApplyNewSettings()
242 (pPrivate->NewParams.SampleRate != pPrivate->CurrentParams.SampleRate) || in LVREV_ApplyNewSettings()
286 if( (pPrivate->NewParams.RoomSize != pPrivate->CurrentParams.RoomSize) || in LVREV_ApplyNewSettings()
[all …]
DLVREV_Process.c101 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()
217 if(pPrivate->CurrentParams.SourceFormat == LVM_MONO) in ReverbBlock()
DLVREV_GetInstanceHandle.c217 pLVREV_Private->CurrentParams.SampleRate = LVM_FS_INVALID; in LVREV_GetInstanceHandle()
218 pLVREV_Private->CurrentParams.OperatingMode = LVM_MODE_DUMMY; in LVREV_GetInstanceHandle()
219 pLVREV_Private->CurrentParams.SourceFormat = LVM_SOURCE_DUMMY; in LVREV_GetInstanceHandle()
DLVREV_Private.h126 LVREV_ControlParams_st CurrentParams; /* Parameters being used */ member
/frameworks/av/media/libeffects/lvm/lib/SpectrumAnalyzer/src/
DLVPSA_Control.c117 pParams->Fs = pLVPSA_Inst->CurrentParams.Fs; in LVPSA_GetControlParams()
118 pParams->LevelDetectionSpeed = pLVPSA_Inst->CurrentParams.LevelDetectionSpeed; in LVPSA_GetControlParams()
195 if(Params.Fs != pInst->CurrentParams.Fs) in LVPSA_ApplyNewSettings()
197 pInst->CurrentParams.Fs = Params.Fs; in LVPSA_ApplyNewSettings()
200 … Freq = (LVM_UINT16) ((LVPSA_SampleRateTab[pInst->CurrentParams.Fs]>>1) / (pInst->nBands + 1)); in LVPSA_ApplyNewSettings()
211 …if(pInst->pFiltersParams[ii-1].CenterFrequency < (LVPSA_SampleRateTab[pInst->CurrentParams.Fs]>>1)) in LVPSA_ApplyNewSettings()
236 if(Params.LevelDetectionSpeed != pInst->CurrentParams.LevelDetectionSpeed) in LVPSA_ApplyNewSettings()
242 pInst->CurrentParams = pInst->NewParams; in LVPSA_ApplyNewSettings()
DLVPSA_Init.c120 pLVPSA_Inst->CurrentParams.Fs = LVM_FS_DUMMY; in LVPSA_Init()
121 pLVPSA_Inst->CurrentParams.LevelDetectionSpeed = LVPSA_SPEED_DUMMY; in LVPSA_Init()
DLVPSA_Private.h91 …LVPSA_ControlParams_t CurrentParams; /* Current control parameters of t… member
DLVPSA_QPD_Process.c160 …if((pLVPSA_Inst->pSpectralDataBufferWritePointer != pWrite)&&(pLVPSA_Inst->CurrentParams.Fs == LVM… in LVPSA_QPD_Process()
DLVPSA_Process.c125 (LVM_INT32)LVPSA_SampleRateInvTab[pLVPSA_Inst->CurrentParams.Fs], in LVPSA_Process()