projects
/
platform
/
upstream
/
libav.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6ebc89a
)
Set avctx->coded_frame in RoQ encoder. At some point in
author
Vitor Sessak
<vitor1001@gmail.com>
Sat, 19 Jul 2008 02:43:23 +0000
(
02:43
+0000)
committer
Vitor Sessak
<vitor1001@gmail.com>
Sat, 19 Jul 2008 02:43:23 +0000
(
02:43
+0000)
the SVN history this became mandated. Fix issue 548.
Originally committed as revision 14287 to svn://svn.ffmpeg.org/ffmpeg/trunk
libavcodec/roqvideoenc.c
patch
|
blob
|
history
diff --git
a/libavcodec/roqvideoenc.c
b/libavcodec/roqvideoenc.c
index 013821c2fd770d33dd62dc468662d56175ef6b6d..a115e5851bf0b0930f14de48ecc83f8546749059 100644
(file)
--- a/
libavcodec/roqvideoenc.c
+++ b/
libavcodec/roqvideoenc.c
@@
-911,6
+911,8
@@
static void roq_encode_video(RoqContext *enc)
reconstruct_and_encode_image(enc, &tempData, enc->width, enc->height,
enc->width*enc->height/64);
+ enc->avctx->coded_frame = enc->current_frame;
+
/* Rotate frame history */
FFSWAP(AVFrame *, enc->current_frame, enc->last_frame);
FFSWAP(motion_vect *, enc->last_motion4, enc->this_motion4);