mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-25 04:30:02 +00:00
flacenc: convert VLA to fixed size
Originally committed as revision 23744 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
47ba787442
commit
79aec75792
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user