aboutsummaryrefslogtreecommitdiff
path: root/silk/fixed/find_LPC_FIX.c
diff options
context:
space:
mode:
authortlegrand@google.com <tlegrand@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2013-12-09 08:35:25 +0000
committertlegrand@google.com <tlegrand@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2013-12-09 08:35:25 +0000
commit3c3902f0ac13428394f14f78f0fab05ef3468d69 (patch)
treeddfc2fe5517c7bf63ef963728a832e8250ba76e7 /silk/fixed/find_LPC_FIX.c
parentdd52457296df1ef41bae8e28dc321d6798509172 (diff)
downloadsrc-3c3902f0ac13428394f14f78f0fab05ef3468d69.tar.gz
Updating Opus to release 1.1
opus-1.1.tar.gz downloaded from http://www.opus-codec.org/ R=sergeyu@chromium.org Review URL: https://codereview.chromium.org/107243004 git-svn-id: svn://svn.chromium.org/chrome/trunk/deps/third_party/opus@239448 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'silk/fixed/find_LPC_FIX.c')
-rw-r--r--silk/fixed/find_LPC_FIX.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/silk/fixed/find_LPC_FIX.c b/silk/fixed/find_LPC_FIX.c
index 70cefb6..783d32e 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 */