Skip to content

Commit

Permalink
Prevent uninitialised variable warning
Browse files Browse the repository at this point in the history
  • Loading branch information
softins committed Oct 14, 2024
1 parent 68f98df commit 685f59a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/opus/silk/NLSF2A.c
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ void silk_NLSF2A(
};
const unsigned char *ordering;
opus_int k, i, dd;
opus_int32 cos_LSF_QA[ SILK_MAX_ORDER_LPC ];
opus_int32 cos_LSF_QA[ SILK_MAX_ORDER_LPC ] = {0};
opus_int32 P[ SILK_MAX_ORDER_LPC / 2 + 1 ], Q[ SILK_MAX_ORDER_LPC / 2 + 1 ];
opus_int32 Ptmp, Qtmp, f_int, f_frac, cos_val, delta;
opus_int32 a32_QA1[ SILK_MAX_ORDER_LPC ];
Expand Down

0 comments on commit 685f59a

Please sign in to comment.