You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
1001L
Originally committed as revision 761 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@@ -2633,12 +2633,12 @@ static int svq1_decode_frame(AVCodecContext *avctx,
|
||||
}
|
||||
}
|
||||
|
||||
/* update backward reference frame */
|
||||
if (!s->hurry_up)
|
||||
{
|
||||
uint8_t *tmp = s->last_picture[i];
|
||||
pict->data[i] = s->current_picture[i];
|
||||
pict->linesize[i] = width;
|
||||
/* update backward reference frame */
|
||||
if (s->pict_type != SVQ1_FRAME_DROPPABLE)
|
||||
{
|
||||
uint8_t *tmp = s->last_picture[i];
|
||||
s->last_picture[i] = s->current_picture[i];
|
||||
s->current_picture[i] = tmp;
|
||||
}
|
||||
|
Reference in New Issue
Block a user