summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/opus/src/silk/fixed/find_LPC_FIX.c
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/opus/src/silk/fixed/find_LPC_FIX.c')
-rw-r--r--chromium/third_party/opus/src/silk/fixed/find_LPC_FIX.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/chromium/third_party/opus/src/silk/fixed/find_LPC_FIX.c b/chromium/third_party/opus/src/silk/fixed/find_LPC_FIX.c
index 70cefb6be8b..783d32e20fa 100644
--- a/chromium/third_party/opus/src/silk/fixed/find_LPC_FIX.c
+++ b/chromium/third_party/opus/src/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 */