From b7adc711fa663f8714a3d096f763cf5129c99505 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Sun, 4 Aug 2002 16:05:05 +0000 Subject: [PATCH] last_picture should be never == NULL (it was with dr1) this might fix a segfault with error concealment Originally committed as revision 837 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/mpegvideo.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libavcodec/mpegvideo.c b/libavcodec/mpegvideo.c index 051c8d9..654b0e0 100644 --- a/libavcodec/mpegvideo.c +++ b/libavcodec/mpegvideo.c @@ -657,6 +657,9 @@ void MPV_frame_start(MpegEncContext *s, AVCodecContext *avctx) s->next_picture[i] = tmp; s->current_picture[i] = tmp; + if(s->last_picture[i]==NULL) + s->last_picture[i]= s->next_picture[i]; + s->last_dr_opaque= s->next_dr_opaque; s->next_dr_opaque= avctx->dr_opaque_frame; -- 2.7.4