Commit 9e58d46e authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit '59480abc'

* commit '59480abc':
  alac: Do bounds checking of lpc_order read from the bitstream

See: fd4f4923Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents 17049bff 59480abc
......@@ -320,6 +320,9 @@ static int decode_element(AVCodecContext *avctx, AVFrame *frame, int ch_index,
rice_history_mult[ch] = get_bits(&alac->gb, 3);
lpc_order[ch] = get_bits(&alac->gb, 5);
if (lpc_order[ch] >= alac->max_samples_per_frame)
return AVERROR_INVALIDDATA;
/* read the predictor table */
for (i = lpc_order[ch] - 1; i >= 0; i--)
lpc_coefs[ch][i] = get_sbits(&alac->gb, 16);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment