summaryrefslogtreecommitdiff
path: root/libs/libopus/silk/float/warped_autocorrelation_FLP.c
diff options
context:
space:
mode:
Diffstat (limited to 'libs/libopus/silk/float/warped_autocorrelation_FLP.c')
-rw-r--r--libs/libopus/silk/float/warped_autocorrelation_FLP.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libs/libopus/silk/float/warped_autocorrelation_FLP.c b/libs/libopus/silk/float/warped_autocorrelation_FLP.c
index 542414f48..09186e73d 100644
--- a/libs/libopus/silk/float/warped_autocorrelation_FLP.c
+++ b/libs/libopus/silk/float/warped_autocorrelation_FLP.c
@@ -42,11 +42,11 @@ void silk_warped_autocorrelation_FLP(
{
opus_int n, i;
double tmp1, tmp2;
- double state[ MAX_SHAPE_LPC_ORDER + 1 ] = { 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 };
- double C[ MAX_SHAPE_LPC_ORDER + 1 ] = { 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 };
+ double state[ MAX_SHAPE_LPC_ORDER + 1 ] = { 0 };
+ double C[ MAX_SHAPE_LPC_ORDER + 1 ] = { 0 };
/* Order must be even */
- silk_assert( ( order & 1 ) == 0 );
+ celt_assert( ( order & 1 ) == 0 );
/* Loop over samples */
for( n = 0; n < length; n++ ) {