diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-07-24 22:39:22 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-07-24 22:39:22 +0200 |
commit | 351b22caae65ad5c5d2deb3815d79d032eb04385 (patch) | |
tree | 1fe284e7f5a7b035720e5c959188cede26d2c06a /libavformat/hdsenc.c | |
parent | 383a04a127734d25c1ef7839c489bba297855801 (diff) | |
download | ffmpeg-351b22caae65ad5c5d2deb3815d79d032eb04385.tar.gz |
avformat/mux: support re-interleaving packets in ff_write_chained()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/hdsenc.c')
-rw-r--r-- | libavformat/hdsenc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/hdsenc.c b/libavformat/hdsenc.c index 20b4b12139..fac5bcf417 100644 --- a/libavformat/hdsenc.c +++ b/libavformat/hdsenc.c @@ -549,7 +549,7 @@ static int hds_write_packet(AVFormatContext *s, AVPacket *pkt) os->last_ts = pkt->dts; os->packets_written++; - return ff_write_chained(os->ctx, pkt->stream_index - os->first_stream, pkt, s); + return ff_write_chained(os->ctx, pkt->stream_index - os->first_stream, pkt, s, 0); } static int hds_write_trailer(AVFormatContext *s) |