projects
/
libav.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
225f9c4
)
1001L
author
Nick Kurshev
<nickols_k@mail.ru>
Mon, 15 Jul 2002 07:43:22 +0000
(07:43 +0000)
committer
Nick Kurshev
<nickols_k@mail.ru>
Mon, 15 Jul 2002 07:43:22 +0000
(07:43 +0000)
Originally committed as revision 761 to svn://svn.ffmpeg.org/ffmpeg/trunk
libavcodec/svq1.c
patch
|
blob
|
blame
|
history
diff --git
a/libavcodec/svq1.c
b/libavcodec/svq1.c
index
fe97970
..
6922614
100644
(file)
--- 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;
}