Searched refs:LVM_FLOAT (Results 1 - 25 of 153) sorted by relevance

1234567

/frameworks/av/media/libeffects/lvm/lib/Bass/src/
H A DLVDBE_Tables.h105 extern const LVM_FLOAT LVDBE_AGC_ATTACK_Table[];
108 extern const LVM_FLOAT LVDBE_AGC_DECAY_Table[];
111 extern const LVM_FLOAT LVDBE_AGC_GAIN_Table[];
114 extern const LVM_FLOAT LVDBE_AGC_HPFGAIN_Table[];
123 extern const LVM_FLOAT LVDBE_VolumeTable[];
124 extern const LVM_FLOAT LVDBE_VolumeTCTable[];
/frameworks/av/media/libeffects/lvm/lib/Common/src/
H A DFilters.h50 LVM_FLOAT A0;
51 LVM_FLOAT A1;
52 LVM_FLOAT A2;
53 LVM_FLOAT B1;
54 LVM_FLOAT B2;
73 LVM_FLOAT A0;
74 LVM_FLOAT A1;
75 LVM_FLOAT B1;
H A DBP_1I_D16F16Css_TRC_WRA_01_Private.h34 LVM_FLOAT * pDelays; /* pointer to the delayed samples (data of 32 bits) */
35 LVM_FLOAT coefs[3]; /* pointer to the filter coefficients */
H A DBP_1I_D16F32Cll_TRC_WRA_01_Private.h32 LVM_FLOAT * pDelays; /* pointer to the delayed samples (data of 32 bits) */
33 LVM_FLOAT coefs[3]; /* pointer to the filter coefficients */
H A DBP_1I_D32F32Cll_TRC_WRA_02_Private.h32 LVM_FLOAT * pDelays; /* pointer to the delayed samples (data of 32 bits) */
33 LVM_FLOAT coefs[3]; /* pointer to the filter coefficients */
H A DBQ_1I_D16F16Css_TRC_WRA_01_Private.h33 LVM_FLOAT * pDelays; /* pointer to the delayed samples (data of 32 bits) */
34 LVM_FLOAT coefs[5]; /* pointer to the filter coefficients */
H A DBQ_1I_D16F32Css_TRC_WRA_01_Private.h33 LVM_FLOAT * pDelays; /* pointer to the delayed samples (data of 32 bits) */
34 LVM_FLOAT coefs[5]; /* pointer to the filter coefficients */
H A DBQ_2I_D16F16Css_TRC_WRA_01_Private.h34 LVM_FLOAT * pDelays; /* pointer to the delayed samples (data of 32 bits) */
35 LVM_FLOAT coefs[5]; /* pointer to the filter coefficients */
H A DBQ_2I_D16F32Css_TRC_WRA_01_Private.h34 LVM_FLOAT * pDelays; /* pointer to the delayed samples \
36 LVM_FLOAT coefs[5]; /* pointer to the filter coefficients */
H A DBQ_2I_D32F32Cll_TRC_WRA_01_Private.h35 LVM_FLOAT * pDelays; /* pointer to the delayed samples \
37 LVM_FLOAT coefs[5]; /* pointer to the filter coefficients */
H A DFO_1I_D16F16Css_TRC_WRA_01_Private.h34 LVM_FLOAT * pDelays; /* pointer to the delayed samples \
36 LVM_FLOAT coefs[3]; /* pointer to the filter coefficients */
H A DFO_1I_D32F32Cll_TRC_WRA_01_Private.h35 LVM_FLOAT * pDelays; /* pointer to the delayed samples (data of 32 bits) */
36 LVM_FLOAT coefs[3]; /* pointer to the filter coefficients */
H A DPK_2I_D32F32CssGss_TRC_WRA_01_Private.h28 LVM_FLOAT * pDelays; /* pointer to the delayed samples (data of 32 bits) */
29 LVM_FLOAT coefs[5]; /* pointer to the filter coefficients */
H A DAbs_32.c51 LVM_FLOAT Abs_Float(LVM_FLOAT input)
56 input = (LVM_FLOAT)(-input);
H A DLVC_Core_MixSoft_1St_2i_D16C31_WRA.c30 static LVM_FLOAT ADD2_SAT_FLOAT(LVM_FLOAT a,
31 LVM_FLOAT b,
32 LVM_FLOAT c)
34 LVM_FLOAT temp;
46 const LVM_FLOAT *src,
47 LVM_FLOAT *dst,
56 LVM_FLOAT DeltaL = pInstanceL->Delta;
57 LVM_FLOAT CurrentL = pInstanceL->Current;
58 LVM_FLOAT Target
[all...]
H A DDelayMix_16x16.c73 void DelayMix_Float(const LVM_FLOAT *src, /* Source 1, to be delayed */
74 LVM_FLOAT *delay, /* Delay buffer */
76 LVM_FLOAT *dst, /* Source/destination */
82 LVM_FLOAT temp;
87 temp = (LVM_FLOAT)((LVM_FLOAT)(*dst + (LVM_FLOAT)delay[Offset]) / 2.0f);
97 temp = (LVM_FLOAT)((LVM_FLOAT)(*dst - (LVM_FLOAT)dela
[all...]
H A DLVC_Core_MixHard_2St_D16C31_SAT.c30 const LVM_FLOAT *src1,
31 const LVM_FLOAT *src2,
32 LVM_FLOAT *dst,
35 LVM_FLOAT Temp;
37 LVM_FLOAT Current1;
38 LVM_FLOAT Current2;
47 Temp = (((LVM_FLOAT)*(src1++) * (LVM_FLOAT)Current1)) +
48 (((LVM_FLOAT)*(src2++) * (LVM_FLOAT)Current
[all...]
/frameworks/av/media/libeffects/lvm/lib/Common/lib/
H A DAGC.h58 LVM_FLOAT AGC_Gain; /* The current AGC gain */
59 LVM_FLOAT AGC_MaxGain; /* The maximum AGC gain */
60 LVM_FLOAT Volume; /* The current volume setting */
61 LVM_FLOAT Target; /* The target volume setting */
62 LVM_FLOAT AGC_Target; /* AGC target level */
63 LVM_FLOAT AGC_Attack; /* AGC attack scaler */
64 LVM_FLOAT AGC_Decay; /* AGC decay scaler */
65 LVM_FLOAT VolumeTC; /* Volume update time constant */
77 const LVM_FLOAT *pStSrc, /* Stereo source */
78 const LVM_FLOAT *pMonoSr
[all...]
H A DFilter.h44 LVM_FLOAT LVM_Power10( LVM_FLOAT X);
46 LVM_FLOAT LVM_Polynomial(LVM_UINT16 N,
47 LVM_FLOAT *pCoefficients,
48 LVM_FLOAT X);
50 LVM_FLOAT LVM_GetOmega(LVM_UINT32 Fc,
52 LVM_FLOAT LVM_GetOmega(LVM_UINT16 Fc,
56 LVM_FLOAT LVM_FO_LPF( LVM_FLOAT w,
59 LVM_FLOAT LVM_FO_HP
[all...]
H A DScalarArithmetic.h39 LVM_FLOAT Abs_Float(LVM_FLOAT input);
57 LVM_FLOAT dB_to_LinFloat(LVM_INT16 db_fix);
H A DVectorArithmetic.h33 void LoadConst_Float( const LVM_FLOAT val,
34 LVM_FLOAT *dst,
47 void Copy_Float( const LVM_FLOAT *src,
48 LVM_FLOAT *dst,
65 void Mult3s_Float( const LVM_FLOAT *src,
66 const LVM_FLOAT val,
67 LVM_FLOAT *dst,
89 void DelayMix_Float(const LVM_FLOAT *src, /* Source 1, to be delayed */
90 LVM_FLOAT *delay, /* Delay buffer */
92 LVM_FLOAT *ds
[all...]
H A DBIQUAD.h33 LVM_FLOAT Storage[6];
51 LVM_FLOAT A2; /* a2 */
52 LVM_FLOAT A1; /* a1 */
53 LVM_FLOAT A0; /* a0 */
54 LVM_FLOAT B2; /* -b2! */
55 LVM_FLOAT B1; /* -b1! */
81 LVM_FLOAT A1; /* a1 */
82 LVM_FLOAT A0; /* a0 */
83 LVM_FLOAT B1; /* -b1! */
105 LVM_FLOAT A
[all...]
H A DMixer.h36 LVM_FLOAT Alpha; /* Time constant. Set by calling application. \
38 LVM_FLOAT Target; /* Target value. Set by calling application. \
40 LVM_FLOAT Current; /* Current value. Set by the mixer function. */
50 LVM_FLOAT Alpha1;
51 LVM_FLOAT Target1;
52 LVM_FLOAT Current1;
59 LVM_FLOAT Alpha2; /* Warning the address of this location is passed as a \
61 LVM_FLOAT Target2;
62 LVM_FLOAT Current2;
109 LVM_FLOAT LVM_Mixer_TimeConstan
[all...]
/frameworks/av/media/libeffects/lvm/lib/StereoWidening/src/
H A DLVCS_StereoEnhancer.h62 LVM_FLOAT*, LVM_FLOAT*, LVM_INT16);
68 LVM_FLOAT*, LVM_FLOAT*, LVM_INT16);
69 LVM_FLOAT MidGain; /* Middle gain in mobile speaker mode */
90 const LVM_FLOAT *pInData,
91 LVM_FLOAT *pOutData,
/frameworks/av/media/libeffects/lvm/lib/SpectrumAnalyzer/src/
H A DLVPSA_QPD.h38 LVM_FLOAT *pDelay;
39 LVM_FLOAT Coefs[2]; /* pointer to the filter coefficients */
53 LVM_FLOAT KP; /*should store a0*/
54 LVM_FLOAT KM; /*should store b2*/
69 LVM_FLOAT Storage[1];
94 LVM_FLOAT *pInSamps,

Completed in 220 milliseconds

1234567