Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGanesh Ajjanagadde <gajjanagadde@gmail.com>2015-12-16 22:40:50 +0300
committerGanesh Ajjanagadde <gajjanagadde@gmail.com>2015-12-19 20:33:49 +0300
commit18bc3dc7681c2b520af62b9dea9c3d1815fc5ad7 (patch)
treeecb14034d08b62d24bd224c56e238b258ef8a97f /libavformat
parent641cb77f501a7fa1410ab53da4923b1bebc2e690 (diff)
lavf/hlsenc: replace round by lrint
Mainly cosmetic here. Reviewed-by: Michael Niedermayer <michael@niedermayer.cc> Signed-off-by: Ganesh Ajjanagadde <gajjanagadde@gmail.com>
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/hlsenc.c2
1 files changed, 1 insertions, 1 deletions
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)