Index: silk/fixed/find_LPC_FIX.c |
diff --git a/silk/fixed/find_LPC_FIX.c b/silk/fixed/find_LPC_FIX.c |
index 70cefb6be8bdda0f968b4c55eb00c2e86a441b2e..783d32e20fa58a8465295021651baf8056c9f2b9 100644 |
--- a/silk/fixed/find_LPC_FIX.c |
+++ b/silk/fixed/find_LPC_FIX.c |
@@ -60,13 +60,13 @@ void silk_find_LPC_FIX( |
psEncC->indices.NLSFInterpCoef_Q2 = 4; |
/* Burg AR analysis for the full frame */ |
- silk_burg_modified( &res_nrg, &res_nrg_Q, a_Q16, x, minInvGain_Q30, subfr_length, psEncC->nb_subfr, psEncC->predictLPCOrder ); |
+ silk_burg_modified( &res_nrg, &res_nrg_Q, a_Q16, x, minInvGain_Q30, subfr_length, psEncC->nb_subfr, psEncC->predictLPCOrder, psEncC->arch ); |
if( psEncC->useInterpolatedNLSFs && !psEncC->first_frame_after_reset && psEncC->nb_subfr == MAX_NB_SUBFR ) { |
VARDECL( opus_int16, LPC_res ); |
/* Optimal solution for last 10 ms */ |
- silk_burg_modified( &res_tmp_nrg, &res_tmp_nrg_Q, a_tmp_Q16, x + 2 * subfr_length, minInvGain_Q30, subfr_length, 2, psEncC->predictLPCOrder ); |
+ silk_burg_modified( &res_tmp_nrg, &res_tmp_nrg_Q, a_tmp_Q16, x + 2 * subfr_length, minInvGain_Q30, subfr_length, 2, psEncC->predictLPCOrder, psEncC->arch ); |
/* subtract residual energy here, as that's easier than adding it to the */ |
/* residual energy of the first 10 ms in each iteration of the search below */ |