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

Unified Diff: third_party/opus/src/celt/celt_lpc.h

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/celt/celt_encoder.c ('k') | third_party/opus/src/celt/celt_lpc.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/opus/src/celt/celt_lpc.h
diff --git a/third_party/opus/src/celt/celt_lpc.h b/third_party/opus/src/celt/celt_lpc.h
index 323459eb1a83156664784742ddca78e1c44e6dc0..a4c5fd6ea5dca312fadb9c361db2abd5e1be7f68 100644
--- a/third_party/opus/src/celt/celt_lpc.h
+++ b/third_party/opus/src/celt/celt_lpc.h
@@ -45,12 +45,11 @@ void celt_fir_c(
opus_val16 *y,
int N,
int ord,
- opus_val16 *mem,
int arch);
#if !defined(OVERRIDE_CELT_FIR)
-#define celt_fir(x, num, y, N, ord, mem, arch) \
- (celt_fir_c(x, num, y, N, ord, mem, arch))
+#define celt_fir(x, num, y, N, ord, arch) \
+ (celt_fir_c(x, num, y, N, ord, arch))
#endif
void celt_iir(const opus_val32 *x,
« no previous file with comments | « third_party/opus/src/celt/celt_encoder.c ('k') | third_party/opus/src/celt/celt_lpc.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698