Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-07-25 00:39:22 +0400
committerMichael Niedermayer <michaelni@gmx.at>2014-07-25 00:39:22 +0400
commit351b22caae65ad5c5d2deb3815d79d032eb04385 (patch)
tree1fe284e7f5a7b035720e5c959188cede26d2c06a /libavformat/hdsenc.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/hdsenc.c')
-rw-r--r--libavformat/hdsenc.c2
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)