Commit f359bac2 authored by Michael Niedermayer's avatar Michael Niedermayer

avformat/hlsenc: remove unneeded l prefix from %lf

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 96b8e7a9
...@@ -148,7 +148,7 @@ static int hls_window(AVFormatContext *s, int last) ...@@ -148,7 +148,7 @@ static int hls_window(AVFormatContext *s, int last)
FFMAX(0, hls->sequence - hls->nb_entries)); FFMAX(0, hls->sequence - hls->nb_entries));
for (en = hls->list; en; en = en->next) { 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); avio_printf(hls->pb, "%s\n", en->name);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment