mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-11 09:35:22 +00:00
avformat/hlsenc: Avoid "%T" "%F" in strftime() to improve compatibility
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
025db5afaf
commit
22ba9a3cb8
@ -544,7 +544,7 @@ static int hls_window(AVFormatContext *s, int last)
|
|||||||
tt = (int64_t)prog_date_time;
|
tt = (int64_t)prog_date_time;
|
||||||
milli = av_clip(lrint(1000*(prog_date_time - tt)), 0, 999);
|
milli = av_clip(lrint(1000*(prog_date_time - tt)), 0, 999);
|
||||||
tm = localtime_r(&tt, &tmpbuf);
|
tm = localtime_r(&tt, &tmpbuf);
|
||||||
strftime(buf0, sizeof(buf0), "%FT%T", tm);
|
strftime(buf0, sizeof(buf0), "%Y-%m-%dT%H:%M:%S", tm);
|
||||||
strftime(buf1, sizeof(buf1), "%z", tm);
|
strftime(buf1, sizeof(buf1), "%z", tm);
|
||||||
avio_printf(out, "#EXT-X-PROGRAM-DATE-TIME:%s.%03d%s\n", buf0, milli, buf1);
|
avio_printf(out, "#EXT-X-PROGRAM-DATE-TIME:%s.%03d%s\n", buf0, milli, buf1);
|
||||||
prog_date_time += en->duration;
|
prog_date_time += en->duration;
|
||||||
|
Loading…
Reference in New Issue
Block a user