• 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] …
72 silk_float silk_levinsondurbin_FLP( /* O prediction error energy …
73silk_float A[], /* O prediction coefficients [order] …
74 …const silk_float corr[], /* I input auto-correlations [order + 1] …
80silk_float *results, /* O result (length correlationCount) …
81 …const silk_float *inputData, /* I input data to correlate …
87 …const silk_float *frame, /* I Signal of length PE_FRAME_LENGTH_MS*Fs_kHz …
91silk_float *LTPCorr, /* I/O Normalized correlation; input: value from previous…
93 …const silk_float search_thres1, /* I First stage threshold for lag candidates 0 - 1 …
94 …const silk_float search_thres2, /* I Final threshold for lag candidates 0 - 1 …
102silk_float *a, /* I/O Unsorted / Sorted vector …
109 silk_float silk_burg_modified_FLP( /* O returns residual energy …
110silk_float A[], /* O prediction coefficients (length order) …
111 …const silk_float x[], /* I input signal, length: nb_subfr*(D+L_sub) …
112 …const silk_float minInvGain, /* I minimum inverse prediction gain …
120 silk_float *data1,
121 silk_float gain,
127 silk_float *data_out,
128 const silk_float *data_in,
129 silk_float gain,
135 const silk_float *data1,
136 const silk_float *data2,
142 const silk_float *data,
154 #define silk_abs_float( a ) ((silk_float)fabs(a))
157 static OPUS_INLINE silk_float silk_sigmoid( silk_float x ) in silk_sigmoid()
159 return (silk_float)(1.0 / (1.0 + exp(-x))); in silk_sigmoid()
163 static OPUS_INLINE opus_int32 silk_float2int( silk_float x ) in silk_float2int()
171 const silk_float *in, in silk_float2short_array()
183 silk_float *out, in silk_short2float_array()
190 out[k] = (silk_float)in[k]; in silk_short2float_array()
195 static OPUS_INLINE silk_float silk_log2( double x ) in silk_log2()
197 return ( silk_float )( 3.32192809488736 * log10( x ) ); in silk_log2()