mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avformat/hlsenc: remove unneeded l prefix from %lf
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
96b8e7a9cd
commit
f359bac27c
@ -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);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user