avformat/tee: allow packets with negative timestamps

As this is a meta muxer and the same flag is set with the fifo
meta muxer, there is really no reason not to have this set here
as well.

Signed-off-by: Jan Ekström <jan.ekstrom@24i.com>
pull/358/head
Jan Ekström 5 years ago committed by Jan Ekström
parent 67bb11b5f6
commit 95fd790c14
  1. 2
      libavformat/tee.c

@ -614,5 +614,5 @@ AVOutputFormat ff_tee_muxer = {
.write_trailer = tee_write_trailer,
.write_packet = tee_write_packet,
.priv_class = &tee_muxer_class,
.flags = AVFMT_NOFILE | AVFMT_ALLOW_FLUSH,
.flags = AVFMT_NOFILE | AVFMT_ALLOW_FLUSH | AVFMT_TS_NEGATIVE,
};

Loading…
Cancel
Save