mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-24 11:49:48 +00:00
1001L
Originally committed as revision 761 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
225f9c44cf
commit
cd141f4c22
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user