From 93a0e478768e9bafc44b8956b94c27fe8e3486f3 Mon Sep 17 00:00:00 2001 From: Karthick J Date: Fri, 22 Dec 2017 07:43:54 +0800 Subject: [PATCH] avformat/hlsenc: set EXT-X-TARGETDURATION use lrint(EXTINF) --- libavformat/hlsenc.c | 2 +- libavformat/hlsplaylist.h | 5 ----- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c index 29fc1d4122..0095ca4339 100644 --- a/libavformat/hlsenc.c +++ b/libavformat/hlsenc.c @@ -1235,7 +1235,7 @@ static int hls_window(AVFormatContext *s, int last, VariantStream *vs) for (en = vs->segments; en; en = en->next) { if (target_duration <= en->duration) - target_duration = hls_get_int_from_double(en->duration); + target_duration = lrint(en->duration); } vs->discontinuity_set = 0; diff --git a/libavformat/hlsplaylist.h b/libavformat/hlsplaylist.h index 48d71b7c77..fe19f34368 100644 --- a/libavformat/hlsplaylist.h +++ b/libavformat/hlsplaylist.h @@ -36,11 +36,6 @@ typedef enum { PLAYLIST_TYPE_NB, } PlaylistType; -static inline int hls_get_int_from_double(double val) -{ - return (int)((val - (int)val) >= 0.001) ? (int)(val + 1) : (int)val; -} - void ff_hls_write_playlist_version(AVIOContext *out, int version); void ff_hls_write_stream_info(AVStream *st, AVIOContext *out, int bandwidth, char *filename);