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
1 changed files with 1 additions and 1 deletions

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,
};