HomeSort by relevance Sort by last modified time
    Searched refs:Coef (Results 1 - 4 of 4) sorted by null

  /external/webrtc/src/modules/audio_coding/codecs/isac/main/source/
filter_functions.c 21 void WebRtcIsac_AllPoleFilter(double *InOut, double *Coef, int lengthInOut, int orderCoef){
28 //if (fabs(Coef[0]-1.0)<0.001) {
29 if ( (Coef[0] > 0.9999) && (Coef[0] < 1.0001) )
33 sum = Coef[1] * InOut[-1];
35 sum += Coef[k] * InOut[-k];
42 scal = 1.0 / Coef[0];
47 *InOut -= scal*Coef[k]*InOut[-k];
55 void WebRtcIsac_AllZeroFilter(double *In, double *Coef, int lengthInOut, int orderCoef, double *Out){
64 tmp = In[0] * Coef[0]
    [all...]
codec.h 182 void WebRtcIsac_AllPoleFilter(double* InOut, double* Coef, int lengthInOut,
185 void WebRtcIsac_AllZeroFilter(double* In, double* Coef, int lengthInOut,
  /frameworks/av/media/libeffects/lvm/lib/SpectrumAnalyzer/src/
LVPSA_Memory.c 59 INST_ALLOC Coef;
66 InstAlloc_Init( &Coef , LVM_NULL);
145 InstAlloc_AddMember( &Coef, pInitParams->nBands * sizeof(Biquad_Instance_t) );
146 InstAlloc_AddMember( &Coef, pInitParams->nBands * sizeof(QPD_State_t) );
147 pMemoryTable->Region[LVPSA_MEMREGION_PERSISTENT_COEF].Size = InstAlloc_GetTotal(&Coef);
LVPSA_Init.c 57 INST_ALLOC Coef;
91 InstAlloc_Init( &Coef , pMemoryTable->Region[LVPSA_MEMREGION_PERSISTENT_COEF].pBaseAddress);
151 pLVPSA_Inst->pBP_Instances = InstAlloc_AddMember( &Coef, pInitParams->nBands * sizeof(Biquad_Instance_t) );
152 pLVPSA_Inst->pQPD_States = InstAlloc_AddMember( &Coef, pInitParams->nBands * sizeof(QPD_State_t) );

Completed in 1367 milliseconds