mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
flacdec: change variable-length array to fixed length
pred_order can never exceed 32, so always allocating that amount is safe and not very wasteful. Originally committed as revision 19669 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
64d39b7c76
commit
8313e17976
@ -358,7 +358,7 @@ static int decode_subframe_lpc(FLACContext *s, int channel, int pred_order)
|
||||
{
|
||||
int i, j;
|
||||
int coeff_prec, qlevel;
|
||||
int coeffs[pred_order];
|
||||
int coeffs[32];
|
||||
int32_t *decoded = s->decoded[channel];
|
||||
|
||||
/* warm up samples */
|
||||
|
Loading…
Reference in New Issue
Block a user