Commit 90174ec2 authored by kostya's avatar kostya

Calculate line size correctly for bit depths < 8

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@15388 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent ac4f5a69
......@@ -175,7 +175,7 @@ static int bmp_decode_frame(AVCodecContext *avctx,
dsize = buf_size - hsize;
/* Line size in file multiple of 4 */
n = (avctx->width * (depth / 8) + 3) & ~3;
n = ((avctx->width * depth) / 8 + 3) & ~3;
if(n * avctx->height > dsize){
av_log(avctx, AV_LOG_ERROR, "not enough data (%d < %d)\n",
......
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