You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
audio_size overflows in the line 759 of speexdec.c for few minutes long audio sample if int is defined to have less than 32 bits. It can be fixed by changing its type to long (or spx_int32_t).
not all systems have short defined as 2 bytes. So the size(short) from line 759 is problematic when it comes to preserve the bit trueness.