summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/rbcodec/codecs/libopus/silk/NLSF2A.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rbcodec/codecs/libopus/silk/NLSF2A.c b/lib/rbcodec/codecs/libopus/silk/NLSF2A.c
index d5b7730638..8f472f25f7 100644
--- a/lib/rbcodec/codecs/libopus/silk/NLSF2A.c
+++ b/lib/rbcodec/codecs/libopus/silk/NLSF2A.c
@@ -80,7 +80,7 @@ void silk_NLSF2A(
80 }; 80 };
81 const unsigned char *ordering; 81 const unsigned char *ordering;
82 opus_int k, i, dd; 82 opus_int k, i, dd;
83 opus_int32 cos_LSF_QA[ SILK_MAX_ORDER_LPC ]; 83 opus_int32 cos_LSF_QA[ SILK_MAX_ORDER_LPC ] = {0};
84 opus_int32 P[ SILK_MAX_ORDER_LPC / 2 + 1 ], Q[ SILK_MAX_ORDER_LPC / 2 + 1 ]; 84 opus_int32 P[ SILK_MAX_ORDER_LPC / 2 + 1 ], Q[ SILK_MAX_ORDER_LPC / 2 + 1 ];
85 opus_int32 Ptmp, Qtmp, f_int, f_frac, cos_val, delta; 85 opus_int32 Ptmp, Qtmp, f_int, f_frac, cos_val, delta;
86 opus_int32 a32_QA1[ SILK_MAX_ORDER_LPC ]; 86 opus_int32 a32_QA1[ SILK_MAX_ORDER_LPC ];