mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-14 02:27:39 -04:00
fix uninitialized warning in libopus
likely this is truly a bug but I imagine much worse things happen before this point in that case Change-Id: If78465cf2ae1e5cf38ad7f087dd436b888bc9996
This commit is contained in:
parent
75f618ea62
commit
e1c5a3e296
1 changed files with 1 additions and 1 deletions
|
@ -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 ];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue