From 19a00c5eb20ad831d3b3284f7bec966e432f7b0a Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Fri, 30 Apr 2010 22:09:42 +0000 Subject: avi bgr24 padding fix. Fixes issue1901 Originally committed as revision 22997 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/rawdec.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'libavcodec/rawdec.c') diff --git a/libavcodec/rawdec.c b/libavcodec/rawdec.c index 6caa7521f7..8b398d2dc9 100644 --- a/libavcodec/rawdec.c +++ b/libavcodec/rawdec.c @@ -152,6 +152,8 @@ static int raw_decode(AVCodecContext *avctx, memcpy(frame->data[1], avctx->palctrl->palette, AVPALETTE_SIZE); avctx->palctrl->palette_changed = 0; } + if(avctx->pix_fmt==PIX_FMT_BGR24 && ((frame->linesize[0]+3)&~3)*avctx->height <= buf_size) + frame->linesize[0] = (frame->linesize[0]+3)&~3; if(context->flip) flip(avctx, picture); -- cgit v1.2.3