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

Unified Diff: third_party/opus/src/silk/LP_variable_cutoff.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/LPC_inv_pred_gain.c ('k') | third_party/opus/src/silk/MacroCount.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/opus/src/silk/LP_variable_cutoff.c
diff --git a/third_party/opus/src/silk/LP_variable_cutoff.c b/third_party/opus/src/silk/LP_variable_cutoff.c
index f639e1f899a9c23e7e542055287c93e99f3b8774..79112ad354a157ae68beda4d355f0f116f2b6f8a 100644
--- a/third_party/opus/src/silk/LP_variable_cutoff.c
+++ b/third_party/opus/src/silk/LP_variable_cutoff.c
@@ -130,6 +130,6 @@ void silk_LP_variable_cutoff(
/* ARMA low-pass filtering */
silk_assert( TRANSITION_NB == 3 && TRANSITION_NA == 2 );
- silk_biquad_alt( frame, B_Q28, A_Q28, psLP->In_LP_State, frame, frame_length, 1);
+ silk_biquad_alt_stride1( frame, B_Q28, A_Q28, psLP->In_LP_State, frame, frame_length);
}
}
« no previous file with comments | « third_party/opus/src/silk/LPC_inv_pred_gain.c ('k') | third_party/opus/src/silk/MacroCount.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698