diff options
author | Michael Niedermayer | 2014-07-24 22:39:22 +0200 |
---|---|---|
committer | Michael Niedermayer | 2014-07-24 22:39:22 +0200 |
commit | 351b22caae65ad5c5d2deb3815d79d032eb04385 (patch) | |
tree | 1fe284e7f5a7b035720e5c959188cede26d2c06a /libavformat/movenchint.c | |
parent | 383a04a127734d25c1ef7839c489bba297855801 (diff) |
avformat/mux: support re-interleaving packets in ff_write_chained()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/movenchint.c')
-rw-r--r-- | libavformat/movenchint.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/movenchint.c b/libavformat/movenchint.c index 9d6a66e8ce..2602254be9 100644 --- a/libavformat/movenchint.c +++ b/libavformat/movenchint.c @@ -422,7 +422,7 @@ int ff_mov_add_hinted_packet(AVFormatContext *s, AVPacket *pkt, sample_queue_push(&trk->sample_queue, pkt->data, pkt->size, sample); /* Feed the packet to the RTP muxer */ - ff_write_chained(rtp_ctx, 0, pkt, s); + ff_write_chained(rtp_ctx, 0, pkt, s, 0); /* Fetch the output from the RTP muxer, open a new output buffer * for next time. */ |