Commit 9f18a970 authored by Michael Niedermayer's avatar Michael Niedermayer

avformat/hlsenc: Assume UTC if "%z" is unsupported in strftime()

Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent 22ba9a3c
......@@ -545,7 +545,8 @@ static int hls_window(AVFormatContext *s, int last)
milli = av_clip(lrint(1000*(prog_date_time - tt)), 0, 999);
tm = localtime_r(&tt, &tmpbuf);
strftime(buf0, sizeof(buf0), "%Y-%m-%dT%H:%M:%S", tm);
strftime(buf1, sizeof(buf1), "%z", tm);
if (!strftime(buf1, sizeof(buf1), "%z", tm))
av_strlcpy(buf1, "Z", sizeof(buf1));
avio_printf(out, "#EXT-X-PROGRAM-DATE-TIME:%s.%03d%s\n", buf0, milli, buf1);
prog_date_time += en->duration;
}
......
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