summaryrefslogtreecommitdiff
path: root/libavformat/dashenc.c
diff options
context:
space:
mode:
authorClément Bœsch <u@pkh.me>2017-05-20 16:39:10 +0200
committerClément Bœsch <u@pkh.me>2017-05-20 16:39:10 +0200
commitba3adea9575cb95a898c738b1f231d989db659e9 (patch)
tree4de82f4d8a28ae197038123a7bc297a493e7b3b2 /libavformat/dashenc.c
parent77a20cff3628b7353164b8433a6b4d4140c901bf (diff)
parent3c2717e48dd8c5115f2be35c2afcabd8a1f67aee (diff)
Merge commit '3c2717e48dd8c5115f2be35c2afcabd8a1f67aee'
* commit '3c2717e48dd8c5115f2be35c2afcabd8a1f67aee': dashenc: increase buffer time hint in the manifest Merged-by: Clément Bœsch <u@pkh.me>
Diffstat (limited to 'libavformat/dashenc.c')
-rw-r--r--libavformat/dashenc.c2
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) {