Searched defs:Fs_kHz (Results 1 - 3 of 3) sorted by relevance

/external/libopus/silk/
H A Ddecode_pitch.c42 const opus_int Fs_kHz, /* I sampling frequency (kHz) */
49 if( Fs_kHz == 8 ) {
69 min_lag = silk_SMULBB( PE_MIN_LAG_MS, Fs_kHz );
70 max_lag = silk_SMULBB( PE_MAX_LAG_MS, Fs_kHz );
38 silk_decode_pitch( opus_int16 lagIndex, opus_int8 contourIndex, opus_int pitch_lags[], const opus_int Fs_kHz, const opus_int nb_subfr ) argument
/external/libopus/silk/float/
H A Dpitch_analysis_core_FLP.c68 const silk_float *frame, /* I Signal of length PE_FRAME_LENGTH_MS*Fs_kHz */
76 const opus_int Fs_kHz, /* I sample frequency (kHz) */
112 silk_assert( Fs_kHz == 8 || Fs_kHz == 12 || Fs_kHz == 16 );
122 frame_length = ( PE_LTP_MEM_LENGTH_MS + nb_subfr * PE_SUBFR_LENGTH_MS ) * Fs_kHz;
125 sf_length = PE_SUBFR_LENGTH_MS * Fs_kHz;
128 min_lag = PE_MIN_LAG_MS * Fs_kHz;
131 max_lag = PE_MAX_LAG_MS * Fs_kHz - 1;
135 /* Resample from input sampled at Fs_kHz t
67 silk_pitch_analysis_core_FLP( const silk_float *frame, opus_int *pitch_out, opus_int16 *lagIndex, opus_int8 *contourIndex, silk_float *LTPCorr, opus_int prevLag, const silk_float search_thres1, const silk_float search_thres2, const opus_int Fs_kHz, const opus_int complexity, const opus_int nb_subfr, int arch ) argument
[all...]
/external/libopus/silk/fixed/
H A Dpitch_analysis_core_FIX.c82 const opus_int16 *frame, /* I Signal of length PE_FRAME_LENGTH_MS*Fs_kHz */
90 const opus_int Fs_kHz, /* I Sample frequency (kHz) */
122 silk_assert( Fs_kHz == 8 || Fs_kHz == 12 || Fs_kHz == 16 );
132 frame_length = ( PE_LTP_MEM_LENGTH_MS + nb_subfr * PE_SUBFR_LENGTH_MS ) * Fs_kHz;
135 sf_length = PE_SUBFR_LENGTH_MS * Fs_kHz;
136 min_lag = PE_MIN_LAG_MS * Fs_kHz;
137 max_lag = PE_MAX_LAG_MS * Fs_kHz - 1;
139 /* Resample from input sampled at Fs_kHz t
81 silk_pitch_analysis_core( const opus_int16 *frame, opus_int *pitch_out, opus_int16 *lagIndex, opus_int8 *contourIndex, opus_int *LTPCorr_Q15, opus_int prevLag, const opus_int32 search_thres1_Q16, const opus_int search_thres2_Q13, const opus_int Fs_kHz, const opus_int complexity, const opus_int nb_subfr, int arch ) argument
[all...]

Completed in 316 milliseconds