From 18bc3dc7681c2b520af62b9dea9c3d1815fc5ad7 Mon Sep 17 00:00:00 2001 From: Ganesh Ajjanagadde Date: Wed, 16 Dec 2015 14:40:50 -0500 Subject: [PATCH] lavf/hlsenc: replace round by lrint Mainly cosmetic here. Reviewed-by: Michael Niedermayer Signed-off-by: Ganesh Ajjanagadde --- libavformat/hlsenc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c index adcf7dfcdd..f2d7a52bb7 100644 --- a/libavformat/hlsenc.c +++ b/libavformat/hlsenc.c @@ -430,7 +430,7 @@ static int hls_window(AVFormatContext *s, int last) } if (hls->flags & HLS_ROUND_DURATIONS) - avio_printf(out, "#EXTINF:%d,\n", (int)round(en->duration)); + avio_printf(out, "#EXTINF:%ld,\n", lrint(en->duration)); else avio_printf(out, "#EXTINF:%f,\n", en->duration); if (hls->flags & HLS_SINGLE_FILE)