Browse Source

Buffer for get_bits must be padded because readers may overread.

Originally committed as revision 7477 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Reimar Döffinger 19 years ago
parent
commit
a5ee04c3e0
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/mpc.c

+ 1
- 1
libavcodec/mpc.c View File

@@ -231,7 +231,7 @@ static int mpc7_decode_frame(AVCodecContext * avctx,
av_log(avctx, AV_LOG_ERROR, "Too small buffer passed (%i bytes)\n", buf_size);
}

bits = av_malloc((buf_size - 1) & ~3);
bits = av_malloc(((buf_size - 1) & ~3) + FF_INPUT_BUFFER_PADDING_SIZE);
c->dsp.bswap_buf(bits, buf + 4, (buf_size - 4) >> 2);
init_get_bits(&gb, bits, (buf_size - 4)* 8);
skip_bits(&gb, buf[0]);


Loading…
Cancel
Save