| Index: silk/float/find_pitch_lags_FLP.c
|
| diff --git a/silk/float/find_pitch_lags_FLP.c b/silk/float/find_pitch_lags_FLP.c
|
| index 455db82f2443c16626f35011f8fb6d43b6950979..f3b22d25ce66fd1ed6078bcaa6cd9589ffe6006a 100644
|
| --- a/silk/float/find_pitch_lags_FLP.c
|
| +++ b/silk/float/find_pitch_lags_FLP.c
|
| @@ -37,7 +37,8 @@ void silk_find_pitch_lags_FLP(
|
| silk_encoder_state_FLP *psEnc, /* I/O Encoder state FLP */
|
| silk_encoder_control_FLP *psEncCtrl, /* I/O Encoder control FLP */
|
| silk_float res[], /* O Residual */
|
| - const silk_float x[] /* I Speech signal */
|
| + const silk_float x[], /* I Speech signal */
|
| + int arch /* I Run-time architecture */
|
| )
|
| {
|
| opus_int buf_len;
|
| @@ -116,7 +117,7 @@ void silk_find_pitch_lags_FLP(
|
| /*****************************************/
|
| if( silk_pitch_analysis_core_FLP( res, psEncCtrl->pitchL, &psEnc->sCmn.indices.lagIndex,
|
| &psEnc->sCmn.indices.contourIndex, &psEnc->LTPCorr, psEnc->sCmn.prevLag, psEnc->sCmn.pitchEstimationThreshold_Q16 / 65536.0f,
|
| - thrhld, psEnc->sCmn.fs_kHz, psEnc->sCmn.pitchEstimationComplexity, psEnc->sCmn.nb_subfr ) == 0 )
|
| + thrhld, psEnc->sCmn.fs_kHz, psEnc->sCmn.pitchEstimationComplexity, psEnc->sCmn.nb_subfr, arch ) == 0 )
|
| {
|
| psEnc->sCmn.indices.signalType = TYPE_VOICED;
|
| } else {
|
|
|