Commit 66ae994c authored by Michael Niedermayer's avatar Michael Niedermayer

avformat/segment: re-interleave packets if needed

Fixes part of Ticket 3797
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 351b22ca
......@@ -766,7 +766,7 @@ static int seg_write_packet(AVFormatContext *s, AVPacket *pkt)
av_ts2str(pkt->pts), av_ts2timestr(pkt->pts, &st->time_base),
av_ts2str(pkt->dts), av_ts2timestr(pkt->dts, &st->time_base));
ret = ff_write_chained(seg->avf, pkt->stream_index, pkt, s, 0);
ret = ff_write_chained(seg->avf, pkt->stream_index, pkt, s, seg->initial_offset || seg->reset_timestamps);
fail:
if (pkt->stream_index == seg->reference_stream_index) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment