Commit 649d49f4 authored by michael's avatar michael

Prevent image2 from complaining about non monotone timestamps as

there are no timestamps in "raw" image2.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@15419 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 197d3db8
......@@ -409,7 +409,7 @@ AVOutputFormat image2_muxer = {
img_write_header,
img_write_packet,
NULL,
AVFMT_NOFILE,
.flags= AVFMT_NOTIMESTAMPS | AVFMT_NOFILE
};
#endif
#ifdef CONFIG_IMAGE2PIPE_MUXER
......@@ -423,5 +423,6 @@ AVOutputFormat image2pipe_muxer = {
CODEC_ID_MJPEG,
img_write_header,
img_write_packet,
.flags= AVFMT_NOTIMESTAMPS
};
#endif
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