Issue #1890 - Update libopus

This resolves #1890
This commit is contained in:
Moonchild 2022-05-04 17:03:37 +00:00 • committed by roytam1
commit a8b1099a1e
228 changed files with 10990 additions and 5670 deletions

View file

@ -39,15 +39,16 @@ void silk_k2a_FLP(
)
{
opus_int k, n;
silk_float Atmp[ SILK_MAX_ORDER_LPC ];
silk_float rck, tmp1, tmp2;
for( k = 0; k < order; k++ ) {
for( n = 0; n < k; n++ ) {
Atmp[ n ] = A[ n ];
rck = rc[ k ];
for( n = 0; n < (k + 1) >> 1; n++ ) {
tmp1 = A[ n ];
tmp2 = A[ k - n - 1 ];
A[ n ] = tmp1 + tmp2 * rck;
A[ k - n - 1 ] = tmp2 + tmp1 * rck;
}
for( n = 0; n < k; n++ ) {
A[ n ] += Atmp[ k - n - 1 ] * rc[ k ];
}
A[ k ] = -rc[ k ];
A[ k ] = -rck;
}
}