OSDN Git Service

h263dec: Fix regression / crash with lowres.
authorMichael Niedermayer <michaelni@gmx.at>
Thu, 15 Dec 2011 03:59:21 +0000 (04:59 +0100)
committerMichael Niedermayer <michaelni@gmx.at>
Thu, 15 Dec 2011 03:59:21 +0000 (04:59 +0100)
Fixes Ticket757
Bug Found by: ami_stuff

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
libavcodec/mpegvideo.c

index bb57bb1..98a771c 100644 (file)
@@ -1232,8 +1232,8 @@ int MPV_frame_start(MpegEncContext *s, AVCodecContext *avctx)
                 return -1;
 
             if(s->codec_id == CODEC_ID_FLV1 || s->codec_id == CODEC_ID_H263){
-                for(i=0; i<s->height; i++)
-                    memset(s->last_picture_ptr->f.data[0] + s->last_picture_ptr->f.linesize[0]*i, 16, s->width);
+                for(i=0; i<avctx->height; i++)
+                    memset(s->last_picture_ptr->f.data[0] + s->last_picture_ptr->f.linesize[0]*i, 16, avctx->width);
             }
 
             ff_thread_report_progress((AVFrame*)s->last_picture_ptr, INT_MAX, 0);