Index: celt/celt_lpc.c |
diff --git a/celt/celt_lpc.c b/celt/celt_lpc.c |
index 7ffe90a357ed482b98c7b0bcc94ccf3f96f9ed81..fa29d626eaf661acab399b674424a29c792425c5 100644 |
--- a/celt/celt_lpc.c |
+++ b/celt/celt_lpc.c |
@@ -226,7 +226,8 @@ int _celt_autocorr( |
const opus_val16 *window, |
int overlap, |
int lag, |
- int n |
+ int n, |
+ int arch |
) |
{ |
opus_val32 d; |
@@ -275,7 +276,7 @@ int _celt_autocorr( |
shift = 0; |
} |
#endif |
- celt_pitch_xcorr(xptr, xptr, ac, fastN, lag+1); |
+ celt_pitch_xcorr(xptr, xptr, ac, fastN, lag+1, arch); |
for (k=0;k<=lag;k++) |
{ |
for (i = k+fastN, d = 0; i < n; i++) |