Commit 38e867f6 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit '18f4fa25'

* commit '18f4fa25':
  aac_adtstoasc_bsf: Check extradata memory allocation
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents 62aec0c2 18f4fa25
......@@ -90,6 +90,8 @@ static int aac_adtstoasc_filter(AVBitStreamFilterContext *bsfc,
av_free(avctx->extradata);
avctx->extradata_size = 2 + pce_size;
avctx->extradata = av_mallocz(avctx->extradata_size + FF_INPUT_BUFFER_PADDING_SIZE);
if (!avctx->extradata)
return AVERROR(ENOMEM);
init_put_bits(&pb, avctx->extradata, avctx->extradata_size);
put_bits(&pb, 5, hdr.object_type);
......
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