[FFmpeg-cvslog] avformat/hlsenc: remove unneeded l prefix from %lf

Michael Niedermayer git at videolan.org
Thu Apr 3 00:39:42 CEST 2014


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Thu Apr  3 00:27:53 2014 +0200| [f359bac27cf2b9f1a70f38ece99e02b5b2f64c7b] | committer: Michael Niedermayer

avformat/hlsenc: remove unneeded l prefix from %lf

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

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

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

diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c
index e7e67c6..54a56fe 100644
--- a/libavformat/hlsenc.c
+++ b/libavformat/hlsenc.c
@@ -148,7 +148,7 @@ static int hls_window(AVFormatContext *s, int last)
                 FFMAX(0, hls->sequence - hls->nb_entries));
 
     for (en = hls->list; en; en = en->next) {
-        avio_printf(hls->pb, "#EXTINF:%lf,\n", en->duration);
+        avio_printf(hls->pb, "#EXTINF:%f,\n", en->duration);
         avio_printf(hls->pb, "%s\n", en->name);
     }
 



More information about the ffmpeg-cvslog mailing list