Commit 5d385e1f authored by michael's avatar michael

10l (fixes delayed frames during encoding)


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@3278 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 935fe230
......@@ -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%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment