1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-01-29 22:00:58 +02:00

lavf/assenc: add non strict ts flag.

ASS can have several events at the same time.
This commit is contained in:
Clément Bœsch 2012-11-11 00:12:05 +01:00
parent 2b3597f0d1
commit 3704804c8f

View File

@ -85,5 +85,5 @@ AVOutputFormat ff_ass_muxer = {
.write_header = write_header,
.write_packet = write_packet,
.write_trailer = write_trailer,
.flags = AVFMT_GLOBALHEADER | AVFMT_NOTIMESTAMPS,
.flags = AVFMT_GLOBALHEADER | AVFMT_NOTIMESTAMPS | AVFMT_TS_NONSTRICT,
};