Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(9)

Unified Diff: third_party/opus/src/silk/float/find_LPC_FLP.c

Issue 2962373002: [Opus] Update to v1.2.1 (Closed)
Patch Set: Pre-increment instead of post-increment Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/opus/src/silk/float/energy_FLP.c ('k') | third_party/opus/src/silk/float/find_LTP_FLP.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/opus/src/silk/float/find_LPC_FLP.c
diff --git a/third_party/opus/src/silk/float/find_LPC_FLP.c b/third_party/opus/src/silk/float/find_LPC_FLP.c
index fcfe1c3681eb61f4273638cc42e1e17000491ede..4d63964febb8b2932ef9cf98ffe96b396a37b826 100644
--- a/third_party/opus/src/silk/float/find_LPC_FLP.c
+++ b/third_party/opus/src/silk/float/find_LPC_FLP.c
@@ -73,7 +73,7 @@ void silk_find_LPC_FLP(
silk_interpolate( NLSF0_Q15, psEncC->prev_NLSFq_Q15, NLSF_Q15, k, psEncC->predictLPCOrder );
/* Convert to LPC for residual energy evaluation */
- silk_NLSF2A_FLP( a_tmp, NLSF0_Q15, psEncC->predictLPCOrder );
+ silk_NLSF2A_FLP( a_tmp, NLSF0_Q15, psEncC->predictLPCOrder, psEncC->arch );
/* Calculate residual energy with LSF interpolation */
silk_LPC_analysis_filter_FLP( LPC_res, a_tmp, x, 2 * subfr_length, psEncC->predictLPCOrder );
« no previous file with comments | « third_party/opus/src/silk/float/energy_FLP.c ('k') | third_party/opus/src/silk/float/find_LTP_FLP.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698