Add rtcd for silk_inner_product_FLP()

This commit is contained in:
Jean-Marc Valin 2023-11-21 02:56:04 -05:00
parent b93e4a149c
commit 239d223d84
No known key found for this signature in database
GPG key ID: 531A52533318F00A
13 changed files with 65 additions and 28 deletions

View file

@ -37,7 +37,8 @@ void silk_autocorrelation_FLP(
silk_float *results, /* O result (length correlationCount) */
const silk_float *inputData, /* I input data to correlate */
opus_int inputDataSize, /* I length of input */
opus_int correlationCount /* I number of correlation taps to compute */
opus_int correlationCount, /* I number of correlation taps to compute */
int arch
)
{
opus_int i;
@ -47,6 +48,6 @@ void silk_autocorrelation_FLP(
}
for( i = 0; i < correlationCount; i++ ) {
results[ i ] = (silk_float)silk_inner_product_FLP( inputData, inputData + i, inputDataSize - i );
results[ i ] = (silk_float)silk_inner_product_FLP( inputData, inputData + i, inputDataSize - i, arch );
}
}