flacenc: convert VLA to fixed size

Originally committed as revision 23744 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Måns Rullgård 2010-06-23 21:22:56 +00:00
parent 47ba787442
commit 79aec75792

View File

@ -787,7 +787,7 @@ static int encode_residual(FlacEncodeContext *ctx, int ch)
omethod == ORDER_METHOD_4LEVEL ||
omethod == ORDER_METHOD_8LEVEL) {
int levels = 1 << omethod;
uint32_t bits[levels];
uint32_t bits[1 << ORDER_METHOD_8LEVEL];
int order;
int opt_index = levels-1;
opt_order = max_order-1;