projects
/
ffmpeg.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4d6a116
)
ZMBV encoder forgot to fill coded frame pointer
author
Kostya Shishkov
<kostya.shishkov@gmail.com>
Thu, 18 Sep 2008 13:17:44 +0000
(13:17 +0000)
committer
Kostya Shishkov
<kostya.shishkov@gmail.com>
Thu, 18 Sep 2008 13:17:44 +0000
(13:17 +0000)
Originally committed as revision 15359 to svn://svn.ffmpeg.org/ffmpeg/trunk
libavcodec/zmbvenc.c
patch
|
blob
|
history
diff --git
a/libavcodec/zmbvenc.c
b/libavcodec/zmbvenc.c
index
a6b51ba
..
79478de
100644
(file)
--- a/
libavcodec/zmbvenc.c
+++ b/
libavcodec/zmbvenc.c
@@
-300,6
+300,8
@@
static av_cold int encode_init(AVCodecContext *avctx)
return -1;
}
+ avctx->coded_frame = (AVFrame*)&c->pic;
+
return 0;
}