Add rtcd for silk_inner_product_FLP()
This commit is contained in:
parent
b93e4a149c
commit
239d223d84
13 changed files with 65 additions and 28 deletions
|
@ -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 );
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue