提交 77e6c403 编写于 作者: M Michael Niedermayer

10l (fixes delayed frames during encoding)

Originally committed as revision 3278 to svn://svn.ffmpeg.org/ffmpeg/trunk
上级 68b3ba0d
......@@ -2973,6 +2973,7 @@ AVCodec mpeg1video_encoder = {
MPV_encode_picture,
MPV_encode_end,
.supported_framerates= frame_rate_tab+1,
.capabilities= CODEC_CAP_DELAY,
};
#ifdef CONFIG_RISKY
......@@ -2986,6 +2987,7 @@ AVCodec mpeg2video_encoder = {
MPV_encode_picture,
MPV_encode_end,
.supported_framerates= frame_rate_tab+1,
.capabilities= CODEC_CAP_DELAY,
};
#endif
#endif
......
......@@ -6048,6 +6048,7 @@ AVCodec mpeg4_encoder = {
MPV_encode_picture,
MPV_encode_end,
.options = mpeg4_options,
.capabilities= CODEC_CAP_DELAY,
};
AVCodec msmpeg4v1_encoder = {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册