diff options
author | Jean-Marc Valin <jmvalin@jmvalin.ca> | 2013-08-28 17:55:34 -0400 |
---|---|---|
committer | Jean-Marc Valin <jmvalin@jmvalin.ca> | 2013-08-28 17:55:34 -0400 |
commit | 6a7ee7fb55b4a41fca2dea19624600fe42d3b7f7 (patch) | |
tree | e64ce7be7536a89105ad6fa460782785b28769f5 /celt/celt_lpc.h | |
parent | a156c5ece7133383468d4cba33f067595d9da391 (diff) | |
download | opus-6a7ee7fb55b4a41fca2dea19624600fe42d3b7f7.tar.gz |
Share auto-correlation code between SILK and CELT
Diffstat (limited to 'celt/celt_lpc.h')
-rw-r--r-- | celt/celt_lpc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/celt/celt_lpc.h b/celt/celt_lpc.h index 2baa77ed..19279a0e 100644 --- a/celt/celt_lpc.h +++ b/celt/celt_lpc.h @@ -48,6 +48,6 @@ void celt_iir(const opus_val32 *x, int ord, opus_val16 *mem); -void _celt_autocorr(const opus_val16 *x, opus_val32 *ac, const opus_val16 *window, int overlap, int lag, int n); +int _celt_autocorr(const opus_val16 *x, opus_val32 *ac, const opus_val16 *window, int overlap, int lag, int n); #endif /* PLC_H */ |