Home | History | Annotate | Download | only in src

Lines Matching defs:pInstance

67     LVEQNB_Instance_t   *pInstance = (LVEQNB_Instance_t *)hInstance;
145 *pMemoryTable = pInstance->MemoryTable;
191 LVEQNB_Instance_t *pInstance;
228 pInstance =(LVEQNB_Instance_t *)*phInstance;
235 pInstance->Capabilities = *pCapabilities;
242 pInstance->MemoryTable = *pMemoryTable;
250 pInstance->pEQNB_FilterState = InstAlloc_AddMember(&AllocMem,
262 pInstance->pEQNB_Taps = (Biquad_2I_Order2_Taps_t *)InstAlloc_AddMember(&AllocMem,
265 pInstance->pBandDefinitions = (LVEQNB_BandDef_t *)InstAlloc_AddMember(&AllocMem,
269 memset(pInstance->pBandDefinitions, 0, MemSize);
271 pInstance->pBiquadType = (LVEQNB_BiquadType_en *)InstAlloc_AddMember(&AllocMem,
281 pInstance->pFastTemporary = (LVM_INT16 *)InstAlloc_AddMember(&AllocMem,
287 pInstance->Params.NBands = 0;
288 pInstance->Params.OperatingMode = LVEQNB_BYPASS;
289 pInstance->Params.pBandDefinition = LVM_NULL;
290 pInstance->Params.SampleRate = LVEQNB_FS_8000;
291 pInstance->Params.SourceFormat = LVEQNB_STEREO;
296 LVEQNB_SetFilters(pInstance, /* Set the filter types */
297 &pInstance->Params);
299 LVEQNB_SetCoefficients(pInstance); /* Set the filter coefficients */
301 LVEQNB_ClearFilterHistory(pInstance); /* Clear the filter history */
306 pInstance->BypassMixer.MixerStream[0].CallbackSet = 0;
307 pInstance->BypassMixer.MixerStream[0].CallbackParam = 0;
308 pInstance->BypassMixer.MixerStream[0].pCallbackHandle = (void*)pInstance;
309 pInstance->BypassMixer.MixerStream[0].pCallBack = LVEQNB_BypassMixerCallBack;
310 LVC_Mixer_Init(&pInstance->BypassMixer.MixerStream[0],0,0);
311 LVC_Mixer_SetTimeConstant(&pInstance->BypassMixer.MixerStream[0],0,LVM_FS_8000,2);
313 pInstance->BypassMixer.MixerStream[1].CallbackSet = 1;
314 pInstance->BypassMixer.MixerStream[1].CallbackParam = 0;
315 pInstance->BypassMixer.MixerStream[1].pCallbackHandle = LVM_NULL;
316 pInstance->BypassMixer.MixerStream[1].pCallBack = LVM_NULL;
317 LVC_Mixer_Init(&pInstance->BypassMixer.MixerStream[1],0,LVM_MAXINT_16);
318 LVC_Mixer_SetTimeConstant(&pInstance->BypassMixer.MixerStream[1],0,LVM_FS_8000,2);
320 pInstance->bInOperatingModeTransition = LVM_FALSE;