mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-06 15:49:50 +08:00
avformat: Add a flag to mark muxers that allow (non strict) monotone timestamps.
Signed-off-by: Justin Ruggles <justin.ruggles@gmail.com>
This commit is contained in:

committed by
Justin Ruggles

parent
5d603f1b65
commit
e9cef89702
@ -513,6 +513,7 @@ AVOutputFormat ff_swf_muxer = {
|
||||
.write_header = swf_write_header,
|
||||
.write_packet = swf_write_packet,
|
||||
.write_trailer = swf_write_trailer,
|
||||
.flags = AVFMT_TS_NONSTRICT,
|
||||
};
|
||||
#endif
|
||||
#if CONFIG_AVM2_MUXER
|
||||
@ -526,5 +527,6 @@ AVOutputFormat ff_avm2_muxer = {
|
||||
.write_header = swf_write_header,
|
||||
.write_packet = swf_write_packet,
|
||||
.write_trailer = swf_write_trailer,
|
||||
.flags = AVFMT_TS_NONSTRICT,
|
||||
};
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user