[FFmpeg-cvslog] lavf/segment: fix computation of M3U8 segment target duration

Stefano Sabatini git at videolan.org
Sat Aug 18 22:48:57 CEST 2012


ffmpeg | branch: master | Stefano Sabatini <stefasab at gmail.com> | Sat Aug 18 22:27:49 2012 +0200| [e35c0ee05c46831de07d38a4cb421de520bcf665] | committer: Stefano Sabatini

lavf/segment: fix computation of M3U8 segment target duration

Use ceil on the max duration, rather than approximating it to the nearest
integer.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=e35c0ee05c46831de07d38a4cb421de520bcf665
---

 libavformat/segment.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavformat/segment.c b/libavformat/segment.c
index db96a41..e148dc0 100644
--- a/libavformat/segment.c
+++ b/libavformat/segment.c
@@ -139,7 +139,7 @@ static void segment_list_close(AVFormatContext *s)
 
     if (seg->list_type == LIST_TYPE_M3U8) {
         avio_printf(seg->list_pb, "#EXT-X-TARGETDURATION:%d\n",
-                    (int)(seg->list_max_segment_time + 0.5));
+                    (int)ceil(seg->list_max_segment_time));
         avio_printf(seg->list_pb, "#EXT-X-ENDLIST\n");
     }
 



More information about the ffmpeg-cvslog mailing list