From 6cc1fec41263add956b35af96d7c4a81c9436a65 Mon Sep 17 00:00:00 2001 From: Nicolas Martyanoff Date: Mon, 7 Jul 2014 13:26:12 +0200 Subject: [PATCH] avformat/hlsenc: correctly compute target duration With HLS, the duration of all segments must be lower or equal to the target duration. Therefore floor(duration + 0.5) yields incorrect results. For example, for duration = 1.35, floor(duration + 0.5) yields 1.0, but the correct result is 2.0. Signed-off-by: Anssi Hannula --- libavformat/hlsenc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c index 86447d8151..388a23a18b 100644 --- a/libavformat/hlsenc.c +++ b/libavformat/hlsenc.c @@ -141,7 +141,7 @@ static int hls_window(AVFormatContext *s, int last) for (en = hls->list; en; en = en->next) { if (target_duration < en->duration) - target_duration = (int) floor(en->duration + 0.5); + target_duration = ceil(en->duration); } avio_printf(hls->pb, "#EXTM3U\n");