| Index: silk/fixed/autocorr_FIX.c
|
| diff --git a/silk/fixed/autocorr_FIX.c b/silk/fixed/autocorr_FIX.c
|
| index dec3cc0bf48a1c774a72e7d166699433c1f8bcd2..de95c9869360f7a6ae94f28b9422c4b2c5d49f97 100644
|
| --- a/silk/fixed/autocorr_FIX.c
|
| +++ b/silk/fixed/autocorr_FIX.c
|
| @@ -38,10 +38,11 @@ void silk_autocorr(
|
| opus_int *scale, /* O Scaling of the correlation vector */
|
| const opus_int16 *inputData, /* I Input data to correlate */
|
| const opus_int inputDataSize, /* I Length of input */
|
| - const opus_int correlationCount /* I Number of correlation taps to compute */
|
| + const opus_int correlationCount, /* I Number of correlation taps to compute */
|
| + int arch /* I Run-time architecture */
|
| )
|
| {
|
| opus_int corrCount;
|
| corrCount = silk_min_int( inputDataSize, correlationCount );
|
| - *scale = _celt_autocorr(inputData, results, NULL, 0, corrCount-1, inputDataSize);
|
| + *scale = _celt_autocorr(inputData, results, NULL, 0, corrCount-1, inputDataSize, arch);
|
| }
|
|
|