From cd141f4c22175b7ef976e4ad351afafd2e7838a3 Mon Sep 17 00:00:00 2001 From: Nick Kurshev Date: Mon, 15 Jul 2002 07:43:22 +0000 Subject: [PATCH] 1001L Originally committed as revision 761 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/svq1.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libavcodec/svq1.c b/libavcodec/svq1.c index fe97970..6922614 100644 --- a/libavcodec/svq1.c +++ b/libavcodec/svq1.c @@ -2633,12 +2633,12 @@ static int svq1_decode_frame(AVCodecContext *avctx, } } + pict->data[i] = s->current_picture[i]; + pict->linesize[i] = width; /* update backward reference frame */ - if (!s->hurry_up) + if (s->pict_type != SVQ1_FRAME_DROPPABLE) { uint8_t *tmp = s->last_picture[i]; - pict->data[i] = s->current_picture[i]; - pict->linesize[i] = width; s->last_picture[i] = s->current_picture[i]; s->current_picture[i] = tmp; } -- 2.7.4