From a79cae798a8a5c41b612c7effe0c34124de421db Mon Sep 17 00:00:00 2001 From: Kostya Shishkov Date: Tue, 23 Sep 2008 08:32:18 +0000 Subject: Calculate line size correctly for bit depths < 8 Originally committed as revision 15388 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/bmp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/bmp.c') diff --git a/libavcodec/bmp.c b/libavcodec/bmp.c index ff34ab75f8..6f815e6c23 100644 --- a/libavcodec/bmp.c +++ b/libavcodec/bmp.c @@ -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", -- cgit v1.2.3