• Home
  • Raw
  • Download

Lines Matching refs:silk_float

46silk_float          *ar,                /* I/O  AR filter to be expanded (without leading 1)      …
48 …const silk_float chirp /* I chirp factor (typically in range (0..1) ) …
54 silk_float silk_LPC_inverse_pred_gain_FLP( /* O return inverse prediction gain, energy domain …
55 …const silk_float *A, /* I prediction coefficients [order] …
59 silk_float silk_schur_FLP( /* O returns residual energy …
60silk_float refl_coef[], /* O reflection coefficients (length order) …
61 …const silk_float auto_corr[], /* I autocorrelation sequence (length order+1) …
66silk_float *A, /* O prediction coefficients [order] …
67 …const silk_float *rc, /* I reflection coefficients [order] …
73silk_float *results, /* O result (length correlationCount) …
74 …const silk_float *inputData, /* I input data to correlate …
80 …const silk_float *frame, /* I Signal of length PE_FRAME_LENGTH_MS*Fs_kHz …
84silk_float *LTPCorr, /* I/O Normalized correlation; input: value from previous…
86 …const silk_float search_thres1, /* I First stage threshold for lag candidates 0 - 1 …
87 …const silk_float search_thres2, /* I Final threshold for lag candidates 0 - 1 …
95silk_float *a, /* I/O Unsorted / Sorted vector …
102 silk_float silk_burg_modified_FLP( /* O returns residual energy …
103silk_float A[], /* O prediction coefficients (length order) …
104 …const silk_float x[], /* I input signal, length: nb_subfr*(D+L_sub) …
105 …const silk_float minInvGain, /* I minimum inverse prediction gain …
113 silk_float *data1,
114 silk_float gain,
120 silk_float *data_out,
121 const silk_float *data_in,
122 silk_float gain,
128 const silk_float *data1,
129 const silk_float *data2,
135 const silk_float *data,
147 #define silk_abs_float( a ) ((silk_float)fabs(a))
150 static OPUS_INLINE silk_float silk_sigmoid( silk_float x ) in silk_sigmoid()
152 return (silk_float)(1.0 / (1.0 + exp(-x))); in silk_sigmoid()
156 static OPUS_INLINE opus_int32 silk_float2int( silk_float x ) in silk_float2int()
164 const silk_float *in, in silk_float2short_array()
176 silk_float *out, in silk_short2float_array()
183 out[k] = (silk_float)in[k]; in silk_short2float_array()
188 static OPUS_INLINE silk_float silk_log2( double x ) in silk_log2()
190 return ( silk_float )( 3.32192809488736 * log10( x ) ); in silk_log2()