diff options
author | Clément Bœsch <u@pkh.me> | 2017-05-20 16:39:10 +0200 |
---|---|---|
committer | Clément Bœsch <u@pkh.me> | 2017-05-20 16:39:10 +0200 |
commit | ba3adea9575cb95a898c738b1f231d989db659e9 (patch) | |
tree | 4de82f4d8a28ae197038123a7bc297a493e7b3b2 | |
parent | 77a20cff3628b7353164b8433a6b4d4140c901bf (diff) | |
parent | 3c2717e48dd8c5115f2be35c2afcabd8a1f67aee (diff) | |
download | ffmpeg-ba3adea9575cb95a898c738b1f231d989db659e9.tar.gz |
Merge commit '3c2717e48dd8c5115f2be35c2afcabd8a1f67aee'
* commit '3c2717e48dd8c5115f2be35c2afcabd8a1f67aee':
dashenc: increase buffer time hint in the manifest
Merged-by: Clément Bœsch <u@pkh.me>
-rw-r--r-- | libavformat/dashenc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/dashenc.c b/libavformat/dashenc.c index a14a6239d8..40430f8b6b 100644 --- a/libavformat/dashenc.c +++ b/libavformat/dashenc.c @@ -491,7 +491,7 @@ static int write_manifest(AVFormatContext *s, int final) } } avio_printf(out, "\tminBufferTime=\""); - write_time(out, c->last_duration); + write_time(out, c->last_duration * 2); avio_printf(out, "\">\n"); avio_printf(out, "\t<ProgramInformation>\n"); if (title) { |