Searched defs:coefs (Results 1 - 17 of 17) sorted by relevance

/frameworks/av/media/libeffects/lvm/lib/Common/src/
H A DBP_1I_D16F16Css_TRC_WRA_01_Private.h25 LVM_INT32 coefs[3]; /* pointer to the filter coefficients */ member in struct:_Filter_State_
H A DBP_1I_D16F32Cll_TRC_WRA_01_Private.h25 LVM_INT32 coefs[3]; /* pointer to the filter coefficients */ member in struct:_Filter_State_
H A DBP_1I_D32F32Cll_TRC_WRA_02_Private.h25 LVM_INT32 coefs[3]; /* pointer to the filter coefficients */ member in struct:_Filter_State_
H A DBQ_1I_D16F16Css_TRC_WRA_01_Private.h25 LVM_INT16 coefs[5]; /* pointer to the filter coefficients */ member in struct:_Filter_State_
H A DBQ_1I_D16F32Css_TRC_WRA_01_Private.h25 LVM_INT16 coefs[5]; /* pointer to the filter coefficients */ member in struct:_Filter_State_
H A DBQ_2I_D16F16Css_TRC_WRA_01_Private.h26 LVM_INT16 coefs[5]; /* pointer to the filter coefficients */ member in struct:_Filter_State_
H A DBQ_2I_D16F32Css_TRC_WRA_01_Private.h26 LVM_INT16 coefs[5]; /* pointer to the filter coefficients */ member in struct:_Filter_State_
H A DBQ_2I_D32F32Cll_TRC_WRA_01_Private.h27 LVM_INT32 coefs[5]; /* pointer to the filter coefficients */ member in struct:_Filter_State_
H A DFO_1I_D16F16Css_TRC_WRA_01_Private.h26 LVM_INT16 coefs[3]; /* pointer to the filter coefficients */ member in struct:_Filter_State_
H A DFO_1I_D32F32Cll_TRC_WRA_01_Private.h27 LVM_INT32 coefs[3]; /* pointer to the filter coefficients */ member in struct:_Filter_State_
H A DFO_2I_D16F32Css_LShx_TRC_WRA_01_Private.h26 LVM_INT16 coefs[3]; /* pointer to the filter coefficients */ member in struct:_Filter_State_
H A DPK_2I_D32F32CllGss_TRC_WRA_01_Private.h26 LVM_INT32 coefs[5]; /* pointer to the filter coefficients */ member in struct:_Filter_State_
H A DPK_2I_D32F32CssGss_TRC_WRA_01_Private.h27 LVM_INT32 coefs[5]; /* pointer to the filter coefficients */ member in struct:_Filter_State_
/frameworks/av/media/libeffects/testlibs/
H A DAudioPeakingFilter.cpp88 audio_coef_t coefs[5]; local
99 mCoefInterp.getCoef(intCoord, fracCoord, coefs);
100 mBiquad.setCoefs(coefs, immediate);
H A DAudioShelvingFilter.cpp90 audio_coef_t coefs[5]; local
100 mHiCoefInterp.getCoef(intCoord, fracCoord, coefs);
102 mLoCoefInterp.getCoef(intCoord, fracCoord, coefs);
104 mBiquad.setCoefs(coefs, immediate);
H A DAudioBiquadFilter.cpp53 void AudioBiquadFilter::setCoefs(const audio_coef_t coefs[NUM_COEFS], bool immediate) { argument
54 memcpy(mTargetCoefs, coefs, sizeof(mTargetCoefs));
57 memcpy(mCoefs, coefs, sizeof(mCoefs));
120 bool AudioBiquadFilter::updateCoefs(const audio_coef_t coefs[NUM_COEFS], argument
125 audio_coef_t diff = coefs[i] - mCoefs[i];
131 mCoefs[i] = coefs[i];
/frameworks/av/services/audioflinger/
H A DAudioResamplerSinc.cpp509 // FIXME store current state (up or down sample) and only load the coefs when the state
688 "vld1.32 { q8}, [%[coefsP0]:128]! \n" // load 4 32-bits coefs
689 "vld1.32 { q9}, [%[coefsP1]:128]! \n" // load 4 32-bits coefs for interpolation
691 "vld1.32 {q10}, [%[coefsN0]:128]! \n" // load 4 32-bits coefs
692 "vld1.32 {q11}, [%[coefsN1]:128]! \n" // load 4 32-bits coefs for interpolation
696 "vsub.s32 q9, q9, q8 \n" // interpolate (step1) 1st set of coefs
700 "vqrdmulh.s32 q9, q9, d2[0] \n" // interpolate (step2) 1st set of coefs
701 "vqrdmulh.s32 q11, q11, d2[1] \n" // interpolate (step3) 2nd set of coefs
755 "vld1.32 { q8}, [%[coefsP0]:128]! \n" // load 4 32-bits coefs
756 "vld1.32 { q9}, [%[coefsP1]:128]! \n" // load 4 32-bits coefs fo
822 interpolate( int32_t& l, int32_t& r, const int32_t* coefs, size_t offset, int32_t lerp, const int16_t* samples) argument
[all...]

Completed in 135 milliseconds