summaryrefslogtreecommitdiff
path: root/libavformat/segment.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-07-24 22:39:22 +0200
committerMichael Niedermayer <michaelni@gmx.at>2014-07-24 22:39:22 +0200
commit351b22caae65ad5c5d2deb3815d79d032eb04385 (patch)
tree1fe284e7f5a7b035720e5c959188cede26d2c06a /libavformat/segment.c
parent383a04a127734d25c1ef7839c489bba297855801 (diff)
avformat/mux: support re-interleaving packets in ff_write_chained()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/segment.c')
-rw-r--r--libavformat/segment.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/segment.c b/libavformat/segment.c
index 135def226b..cae0f114a5 100644
--- a/libavformat/segment.c
+++ b/libavformat/segment.c
@@ -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);
+ ret = ff_write_chained(seg->avf, pkt->stream_index, pkt, s, 0);
fail:
if (pkt->stream_index == seg->reference_stream_index) {