diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-10-03 17:54:21 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-03-12 00:47:04 +0100 |
commit | fd36238c402d69438edab22fd81a7ab5397fee93 (patch) | |
tree | c172380d4355c9d85f5146cbf3747f069e484d9a | |
parent | 7a5590ef4282e19d48d70cba0bc4628c13ec6fd8 (diff) | |
download | ffmpeg-fd36238c402d69438edab22fd81a7ab5397fee93.tar.gz |
avcodec/pngdec: Calculate MPNG bytewidth more defensively
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
(cherry picked from commit e830902934a29df05c7af65aef2a480b15f572c4)
Conflicts:
libavcodec/pngdec.c
-rw-r--r-- | libavcodec/pngdec.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/pngdec.c b/libavcodec/pngdec.c index 6a4953057e..22c50b720e 100644 --- a/libavcodec/pngdec.c +++ b/libavcodec/pngdec.c @@ -584,9 +584,10 @@ static int decode_frame(AVCodecContext *avctx, int i, j; uint8_t *pd = s->current_picture->data[0]; uint8_t *pd_last = s->last_picture->data[0]; + int ls = FFMIN(av_image_get_linesize(s->current_picture->format, s->width, 0), s->width * s->bpp); for(j=0; j < s->height; j++) { - for(i=0; i < s->width * s->bpp; i++) { + for(i=0; i < ls; i++) { pd[i] += pd_last[i]; } pd += s->image_linesize; |