Searched refs:hInstance (Results 1 - 25 of 44) sorted by relevance

12

/frameworks/av/media/libeffects/lvm/lib/Reverb/src/
H A DLVREV_GetControlParameters.c35 /* hInstance Instance handle */
40 /* LVREV_NULLADDRESS When hInstance or pControlParams is NULL */
46 LVREV_ReturnStatus_en LVREV_GetControlParameters(LVREV_Handle_t hInstance, argument
50 LVREV_Instance_st *pLVREV_Private = (LVREV_Instance_st *)hInstance;
56 if((hInstance == LVM_NULL) || (pControlParams == LVM_NULL))
H A DLVREV_ClearAudioBuffers.c35 /* hInstance Instance handle */
45 LVREV_ReturnStatus_en LVREV_ClearAudioBuffers(LVREV_Handle_t hInstance) argument
48 LVREV_Instance_st *pLVREV_Private = (LVREV_Instance_st *)hInstance;
55 if(hInstance == LVM_NULL)
H A DLVREV_SetControlParameters.c33 /* hInstance Instance handle */
38 /* LVREV_NULLADDRESS When hInstance or pNewParams is NULL */
45 LVREV_ReturnStatus_en LVREV_SetControlParameters(LVREV_Handle_t hInstance, argument
49 LVREV_Instance_st *pLVREV_Private = (LVREV_Instance_st *)hInstance;
55 if((hInstance == LVM_NULL) || (pNewParams == LVM_NULL))
/frameworks/av/media/libeffects/lvm/lib/StereoWidening/src/
H A DLVCS_Equaliser.h46 LVCS_ReturnStatus_en LVCS_EqualiserInit(LVCS_Handle_t hInstance,
49 LVCS_ReturnStatus_en LVCS_Equaliser(LVCS_Handle_t hInstance,
H A DLVCS_BypassMix.h67 LVCS_ReturnStatus_en LVCS_BypassMixInit(LVCS_Handle_t hInstance,
71 LVCS_ReturnStatus_en LVCS_BypassMixer(LVCS_Handle_t hInstance,
H A DLVCS_StereoEnhancer.h67 LVCS_ReturnStatus_en LVCS_SEnhancerInit(LVCS_Handle_t hInstance,
70 LVCS_ReturnStatus_en LVCS_StereoEnhancer(LVCS_Handle_t hInstance,
H A DLVCS_Control.c37 /* hInstance Instance handle */
48 LVCS_ReturnStatus_en LVCS_GetParameters(LVCS_Handle_t hInstance, argument
52 LVCS_Instance_t *pInstance =(LVCS_Instance_t *)hInstance;
68 /* hInstance Instance handle */
79 LVCS_ReturnStatus_en LVCS_Control(LVCS_Handle_t hInstance, argument
83 LVCS_Instance_t *pInstance =(LVCS_Instance_t *)hInstance;
97 err=LVCS_ReverbGeneratorInit(hInstance,pParams);
147 err=LVCS_SEnhancerInit(hInstance,
150 err=LVCS_ReverbGeneratorInit(hInstance,
153 err=LVCS_EqualiserInit(hInstance,
244 LVCS_TimerCallBack(void* hInstance, void* pCallBackParams, LVM_INT32 CallbackParam) argument
[all...]
H A DLVCS_ReverbGenerator.h78 LVCS_ReturnStatus_en LVCS_ReverbGeneratorInit(LVCS_Handle_t hInstance,
81 LVCS_ReturnStatus_en LVCS_ReverbGenerator(LVCS_Handle_t hInstance,
H A DLVCS_Process.c58 /* hInstance Instance handle */
70 LVCS_ReturnStatus_en LVCS_Process_CS(LVCS_Handle_t hInstance, argument
76 LVCS_Instance_t *pInstance = (LVCS_Instance_t *)hInstance;
100 err=LVCS_StereoEnhancer(hInstance, /* Instance handle */
108 err=LVCS_ReverbGenerator(hInstance, /* Instance handle */
116 err=LVCS_Equaliser(hInstance, /* Instance handle */
123 err=LVCS_BypassMixer(hInstance, /* Instance handle */
151 /* hInstance Instance handle */
164 LVCS_ReturnStatus_en LVCS_Process(LVCS_Handle_t hInstance, argument
170 LVCS_Instance_t *pInstance =(LVCS_Instance_t *)hInstance;
[all...]
H A DLVCS_Equaliser.c47 /* hInstance Instance Handle */
57 LVCS_ReturnStatus_en LVCS_EqualiserInit(LVCS_Handle_t hInstance, argument
62 LVCS_Instance_t *pInstance = (LVCS_Instance_t *)hInstance;
124 /* hInstance Instance Handle */
136 LVCS_ReturnStatus_en LVCS_Equaliser(LVCS_Handle_t hInstance, argument
141 LVCS_Instance_t *pInstance = (LVCS_Instance_t *)hInstance;
H A DLVCS_BypassMix.c35 LVM_INT32 LVCS_MixerCallback( LVCS_Handle_t hInstance,
58 /* hInstance Instance Handle */
68 LVCS_ReturnStatus_en LVCS_BypassMixInit(LVCS_Handle_t hInstance, argument
74 LVCS_Instance_t *pInstance = (LVCS_Instance_t *)hInstance;
123 pConfig->Mixer_Instance.MixerStream[1].pCallbackHandle = hInstance;
195 /* hInstance Instance Handle */
208 LVCS_ReturnStatus_en LVCS_BypassMixer(LVCS_Handle_t hInstance, argument
215 LVCS_Instance_t *pInstance = (LVCS_Instance_t *)hInstance;
250 LVM_INT32 LVCS_MixerCallback(LVCS_Handle_t hInstance, argument
254 LVCS_Instance_t *pInstance = (LVCS_Instance_t *)hInstance;
[all...]
/frameworks/av/media/libeffects/lvm/lib/Bundle/src/
H A DLVM_API_Specials.c37 /* hInstance Instance Handle */
52 LVM_Handle_t hInstance,
58 LVM_Instance_t *pInstance = (LVM_Instance_t *)hInstance;
89 LVM_ApplyNewSettings(hInstance);
127 /* hInstance Instance Handle */
139 LVM_ReturnStatus_en LVM_SetVolumeNoSmoothing( LVM_Handle_t hInstance, argument
142 LVM_Instance_t *pInstance =(LVM_Instance_t *)hInstance;
146 Error = LVM_SetControlParameters(hInstance,pParams);
51 LVM_GetSpectrum( LVM_Handle_t hInstance, LVM_UINT8 *pCurrentPeaks, LVM_UINT8 *pPastPeaks, LVM_INT32 AudioTime ) argument
H A DLVM_Process.c37 /* hInstance Instance handle */
49 /* LVM_NULLADDRESS When one of hInstance, pInData or pOutData is NULL */
55 LVM_ReturnStatus_en LVM_Process(LVM_Handle_t hInstance, argument
62 LVM_Instance_t *pInstance = (LVM_Instance_t *)hInstance;
81 if ((hInstance == LVM_NULL) || (pInData == LVM_NULL) || (pOutData == LVM_NULL))
114 Status = LVM_ApplyNewSettings(hInstance);
144 LVM_BufferIn(hInstance,
268 LVM_BufferOut(hInstance,
H A DLVM_Buffers.c39 /* hInstance - Instance handle */
52 void LVM_BufferManagedIn(LVM_Handle_t hInstance, argument
62 LVM_Instance_t *pInstance = (LVM_Instance_t *)hInstance;
205 /* hInstance - Instance handle */
217 void LVM_BufferUnmanagedIn(LVM_Handle_t hInstance, argument
223 LVM_Instance_t *pInstance = (LVM_Instance_t *)hInstance;
268 /* hInstance - Instance handle */
281 void LVM_BufferOptimisedIn(LVM_Handle_t hInstance, argument
288 LVM_Instance_t *pInstance = (LVM_Instance_t *)hInstance;
462 /* hInstance
475 LVM_BufferIn(LVM_Handle_t hInstance, const LVM_INT16 *pInData, LVM_INT16 **pToProcess, LVM_INT16 **pProcessed, LVM_UINT16 *pNumSamples) argument
526 LVM_BufferManagedOut(LVM_Handle_t hInstance, LVM_INT16 *pOutData, LVM_UINT16 *pNumSamples) argument
696 LVM_BufferUnmanagedOut(LVM_Handle_t hInstance, LVM_UINT16 *pNumSamples) argument
744 LVM_BufferOptimisedOut(LVM_Handle_t hInstance, LVM_UINT16 *pNumSamples) argument
847 LVM_BufferOut(LVM_Handle_t hInstance, LVM_INT16 *pOutData, LVM_UINT16 *pNumSamples) argument
[all...]
H A DLVM_Private.h250 LVM_ReturnStatus_en LVM_ApplyNewSettings(LVM_Handle_t hInstance);
265 void LVM_BufferIn( LVM_Handle_t hInstance,
271 void LVM_BufferOut( LVM_Handle_t hInstance,
/frameworks/av/media/libeffects/lvm/lib/SpectrumAnalyzer/lib/
H A DLVPSA.h132 /* hInstance = NULL Returns the memory requirements */
133 /* hInstance = Instance handle Returns the memory requirements and */
136 /* When this function is called for memory allocation (hInstance=NULL) the memory */
139 /* When the function is called for free (hInstance = Instance Handle) the memory */
143 /* hInstance Instance Handle */
152 LVPSA_RETURN LVPSA_Memory ( pLVPSA_Handle_t hInstance,
189 /* hInstance Instance Handle */
197 LVPSA_RETURN LVPSA_Control ( pLVPSA_Handle_t hInstance,
208 /* hInstance Instance Handle */
219 LVPSA_RETURN LVPSA_Process ( pLVPSA_Handle_t hInstance,
[all...]
/frameworks/av/media/libeffects/lvm/lib/Reverb/lib/
H A DLVREV.h149 /* hInstance = NULL Returns the memory requirements */
150 /* hInstance = Instance handle Returns the memory requirements and allocated */
153 /* When this function is called with hInstance = NULL the memory base address pointers */
156 /* When the function is called for freeing memory, hInstance = Instance Handle the */
161 /* hInstance Instance Handle */
175 LVREV_ReturnStatus_en LVREV_GetMemoryTable(LVREV_Handle_t hInstance,
220 /* hInstance Instance handle */
225 /* LVREV_NULLADDRESS When hInstance or pControlParams is NULL */
231 LVREV_ReturnStatus_en LVREV_GetControlParameters(LVREV_Handle_t hInstance,
243 /* hInstance Instanc
[all...]
/frameworks/av/media/libeffects/lvm/lib/StereoWidening/lib/
H A DLVCS.h238 /* hInstance = NULL Returns the memory requirements */
239 /* hInstance = Instance handle Returns the memory requirements and */
242 /* When this function is called for memory allocation (hInstance=NULL) it is */
249 /* When the function is called for free (hInstance = Instance Handle) the */
254 /* hInstance Instance Handle */
266 LVCS_ReturnStatus_en LVCS_Memory(LVCS_Handle_t hInstance,
279 /* hInstance set to NULL. In this case the algorithm returns the new instance */
283 /* by calling with hInstance = Instance Handle. In this case the memory table */
288 /* hInstance Instance handle */
318 /* hInstance Instanc
[all...]
/frameworks/av/media/libeffects/lvm/lib/Bass/lib/
H A DLVDBE.h278 /* hInstance = NULL Returns the memory requirements */
279 /* hInstance = Instance handle Returns the memory requirements and */
282 /* When this function is called for memory allocation (hInstance=NULL) the memory */
285 /* When the function is called for free (hInstance = Instance Handle) the memory */
289 /* hInstance Instance Handle */
301 LVDBE_ReturnStatus_en LVDBE_Memory(LVDBE_Handle_t hInstance,
314 /* hInstance set to NULL. In this case the algorithm returns the new instance */
318 /* by calling with hInstance = Instance Handle. In this case the memory table */
323 /* hInstance Instance handle */
353 /* hInstance Instanc
[all...]
/frameworks/av/media/libeffects/lvm/lib/Eq/lib/
H A DLVEQNB.h296 /* hInstance = NULL Returns the memory requirements */
297 /* hInstance = Instance handle Returns the memory requirements and */
300 /* When this function is called for memory allocation (hInstance=NULL) the memory */
303 /* When the function is called for free (hInstance = Instance Handle) the memory */
307 /* hInstance Instance Handle */
320 LVEQNB_ReturnStatus_en LVEQNB_Memory(LVEQNB_Handle_t hInstance,
333 /* hInstance set to NULL. In this case the algorithm returns the new instance */
337 /* by calling with hInstance = Instance Handle. In this case the memory table */
342 /* hInstance Instance handle */
374 /* hInstance Instanc
[all...]
/frameworks/av/media/libeffects/lvm/lib/Bundle/lib/
H A DLVM.h362 /* hInstance = NULL Returns the memory requirements */
363 /* hInstance = Instance handle Returns the memory requirements and */
366 /* When this function is called for memory allocation (hInstance=NULL) the memory */
369 /* When the function is called for free (hInstance = Instance Handle) the memory */
373 /* hInstance Instance Handle */
386 LVM_ReturnStatus_en LVM_GetMemoryTable(LVM_Handle_t hInstance,
426 /* hInstance Instance handle */
436 LVM_ReturnStatus_en LVM_ClearAudioBuffers(LVM_Handle_t hInstance);
448 /* hInstance Instance handle */
453 /* LVM_NULLADDRESS when any of hInstance o
[all...]
/frameworks/av/media/libeffects/lvm/lib/SpectrumAnalyzer/src/
H A DLVPSA_QPD.h60 void LVPSA_QPD_Process ( void *hInstance,
H A DLVPSA_Process.c35 /* hInstance Pointer to the instance */
46 LVPSA_RETURN LVPSA_Process ( pLVPSA_Handle_t hInstance, argument
52 LVPSA_InstancePr_t *pLVPSA_Inst = (LVPSA_InstancePr_t*)hInstance;
62 if(hInstance == LVM_NULL || pLVPSA_InputSamples == LVM_NULL)
144 /* hInstance Pointer to the instance */
155 LVPSA_RETURN LVPSA_GetSpectrum ( pLVPSA_Handle_t hInstance, argument
162 LVPSA_InstancePr_t *pLVPSA_Inst = (LVPSA_InstancePr_t*)hInstance;
166 if(hInstance == LVM_NULL || pCurrentValues == LVM_NULL || pPeakValues == LVM_NULL)
/frameworks/av/media/libeffects/lvm/lib/Eq/src/
H A DLVEQNB_Control.c48 /* hInstance Instance handle */
60 LVEQNB_ReturnStatus_en LVEQNB_GetParameters(LVEQNB_Handle_t hInstance, argument
64 LVEQNB_Instance_t *pInstance =(LVEQNB_Instance_t *)hInstance;
69 if((hInstance == LVM_NULL) || (pParams == LVM_NULL))
89 /* hInstance Instance handle */
94 /* LVEQNB_NULLADDRESS hInstance or pCapabilities is NULL */
101 LVEQNB_ReturnStatus_en LVEQNB_GetCapabilities(LVEQNB_Handle_t hInstance, argument
105 LVEQNB_Instance_t *pInstance =(LVEQNB_Instance_t *)hInstance;
107 if((hInstance == LVM_NULL) || (pCapabilities == LVM_NULL))
318 /* hInstance Instanc
332 LVEQNB_Control(LVEQNB_Handle_t hInstance, LVEQNB_Params_t *pParams) argument
461 LVEQNB_BypassMixerCallBack(void* hInstance, void *pGeneralPurpose, LVM_INT16 CallbackParam) argument
[all...]
H A DLVEQNB_Process.c46 /* hInstance Instance handle */
53 /* LVEQNB_NULLADDRESS When hInstance, pInData or pOutData are NULL */
61 LVEQNB_ReturnStatus_en LVEQNB_Process(LVEQNB_Handle_t hInstance, argument
69 LVEQNB_Instance_t *pInstance = (LVEQNB_Instance_t *)hInstance;
74 if((hInstance == LVM_NULL) || (pInData == LVM_NULL) || (pOutData == LVM_NULL))

Completed in 438 milliseconds

12