diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2015-08-03 01:22:27 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2015-08-03 01:41:13 +0200 |
commit | 7f46a641bf2540b8cf1293d5e50c0c0e34264254 (patch) | |
tree | d740959f033e46efec6372d0abe7dbca1597f431 /libavcodec/aacdec.c | |
parent | 7ab1c57a64b629455805d7fa74a8a20c689fc1f6 (diff) | |
download | ffmpeg-7f46a641bf2540b8cf1293d5e50c0c0e34264254.tar.gz |
avcodec/aacdec: Fix integer overflow in argument to decode_audio_specific_config()
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec/aacdec.c')
-rw-r--r-- | libavcodec/aacdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/aacdec.c b/libavcodec/aacdec.c index c0364033d6..837102f40a 100644 --- a/libavcodec/aacdec.c +++ b/libavcodec/aacdec.c @@ -496,7 +496,7 @@ static int latm_decode_frame(AVCodecContext *avctx, void *out, push_output_configuration(&latmctx->aac_ctx); if ((err = decode_audio_specific_config( &latmctx->aac_ctx, avctx, &latmctx->aac_ctx.oc[1].m4ac, - avctx->extradata, avctx->extradata_size*8, 1)) < 0) { + avctx->extradata, avctx->extradata_size*8LL, 1)) < 0) { pop_output_configuration(&latmctx->aac_ctx); return err; } |