summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Große <pegro@friiks.de>2017-10-29 16:10:36 +0100
committerMichael Niedermayer <michael@niedermayer.cc>2017-10-29 18:28:40 +0100
commit44ede215b6623eb5e24bac013ea668366e2f258a (patch)
tree0c03db0eb43066a92a771124e335ec9a823ae1d3
parent3dca4887aef4f1c2ab2f94a02342b3f50913522c (diff)
dashenc: set DASH related options for the subsequent matroska muxer when using webm
This patch is inspired by the ffmpeg webm_chunk muxer and fixes that all resulting tracks have the same track number. Signed-off-by: Peter Große <pegro@friiks.de> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r--libavformat/dashenc.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/libavformat/dashenc.c b/libavformat/dashenc.c
index e25a660fbe..0ca7cf5aa3 100644
--- a/libavformat/dashenc.c
+++ b/libavformat/dashenc.c
@@ -778,6 +778,9 @@ static int dash_init(AVFormatContext *s)
} else {
av_dict_set_int(&opts, "cluster_time_limit", c->min_seg_duration / 1000, 0);
av_dict_set_int(&opts, "cluster_size_limit", 5 * 1024 * 1024, 0); // set a large cluster size limit
+ av_dict_set_int(&opts, "dash", 1, 0);
+ av_dict_set_int(&opts, "dash_track_number", i + 1, 0);
+ av_dict_set_int(&opts, "live", 1, 0);
}
if ((ret = avformat_write_header(ctx, &opts)) < 0)
return ret;