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

Unified Diff: third_party/opus/src/silk/fixed/find_LPC_FIX.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/fixed/encode_frame_FIX.c ('k') | third_party/opus/src/silk/fixed/find_LTP_FIX.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/opus/src/silk/fixed/find_LPC_FIX.c
diff --git a/third_party/opus/src/silk/fixed/find_LPC_FIX.c b/third_party/opus/src/silk/fixed/find_LPC_FIX.c
index e11cdc86e67d0f836c75e4033b9ee2b2915394a8..e55b63ac329a214dc5ac9ff40893943e33ad083d 100644
--- a/third_party/opus/src/silk/fixed/find_LPC_FIX.c
+++ b/third_party/opus/src/silk/fixed/find_LPC_FIX.c
@@ -92,7 +92,7 @@ void silk_find_LPC_FIX(
silk_interpolate( NLSF0_Q15, psEncC->prev_NLSFq_Q15, NLSF_Q15, k, psEncC->predictLPCOrder );
/* Convert to LPC for residual energy evaluation */
- silk_NLSF2A( a_tmp_Q12, NLSF0_Q15, psEncC->predictLPCOrder );
+ silk_NLSF2A( a_tmp_Q12, NLSF0_Q15, psEncC->predictLPCOrder, psEncC->arch );
/* Calculate residual energy with NLSF interpolation */
silk_LPC_analysis_filter( LPC_res, x, a_tmp_Q12, 2 * subfr_length, psEncC->predictLPCOrder, psEncC->arch );
« no previous file with comments | « third_party/opus/src/silk/fixed/encode_frame_FIX.c ('k') | third_party/opus/src/silk/fixed/find_LTP_FIX.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698