summaryrefslogtreecommitdiffstats
path: root/libavcodec/mpegaudiodec.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-04-14 00:07:38 +0200
committerMichael Niedermayer <michaelni@gmx.at>2012-04-14 00:24:38 +0200
commitcca9528524c7a4b91451f4322bd50849af5d057e (patch)
tree2f07bf6cd825f7990d49c58b05e4854759a5d588 /libavcodec/mpegaudiodec.c
parentc41ac870470c614185e1752c11f892809022248a (diff)
downloadffmpeg-streaming-cca9528524c7a4b91451f4322bd50849af5d057e.zip
ffmpeg-streaming-cca9528524c7a4b91451f4322bd50849af5d057e.tar.gz
mp3on4: allocate a large enough frame.
Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/mpegaudiodec.c')
-rw-r--r--libavcodec/mpegaudiodec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mpegaudiodec.c b/libavcodec/mpegaudiodec.c
index 5c389c9..d7d359a 100644
--- a/libavcodec/mpegaudiodec.c
+++ b/libavcodec/mpegaudiodec.c
@@ -1898,7 +1898,7 @@ static int decode_frame_mp3on4(AVCodecContext *avctx, void *data,
int fr, j, n, ch, ret;
/* get output buffer */
- s->frame->nb_samples = MPA_FRAME_SIZE;
+ s->frame->nb_samples = s->frames * MPA_FRAME_SIZE;
if ((ret = avctx->get_buffer(avctx, s->frame)) < 0) {
av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
return ret;
OpenPOWER on IntegriCloud