forked from FFmpeg/FFmpeg
Prevent image2 from complaining about non monotone timestamps as
there are no timestamps in "raw" image2. Originally committed as revision 15419 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
6c8050078e
commit
644b0c4c92
1 changed files with 2 additions and 1 deletions
|
@ -409,7 +409,7 @@ AVOutputFormat image2_muxer = {
|
||||||
img_write_header,
|
img_write_header,
|
||||||
img_write_packet,
|
img_write_packet,
|
||||||
NULL,
|
NULL,
|
||||||
AVFMT_NOFILE,
|
.flags= AVFMT_NOTIMESTAMPS | AVFMT_NOFILE
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
#ifdef CONFIG_IMAGE2PIPE_MUXER
|
#ifdef CONFIG_IMAGE2PIPE_MUXER
|
||||||
|
@ -423,5 +423,6 @@ AVOutputFormat image2pipe_muxer = {
|
||||||
CODEC_ID_MJPEG,
|
CODEC_ID_MJPEG,
|
||||||
img_write_header,
|
img_write_header,
|
||||||
img_write_packet,
|
img_write_packet,
|
||||||
|
.flags= AVFMT_NOTIMESTAMPS
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Add table
Reference in a new issue