Re: [FFmpeg-devel] [PATCH] hlsenc: don't use %s for strftime on msvc

2017-02-24 Thread Steven Liu
2017-02-21 21:31 GMT+08:00 Steven Liu : > > > 2017-02-21 15:26 GMT+08:00 Hendrik Leppkes : > >> On Tue, Feb 21, 2017 at 8:24 AM, Hendrik Leppkes >> wrote: >> > MSVC doesn't support the %s time format, and instead of returning an >> > error the invalid parameter handler is invoked which (by defaul

Re: [FFmpeg-devel] [PATCH] hlsenc: don't use %s for strftime on msvc

2017-02-21 Thread Steven Liu
2017-02-21 15:26 GMT+08:00 Hendrik Leppkes : > On Tue, Feb 21, 2017 at 8:24 AM, Hendrik Leppkes > wrote: > > MSVC doesn't support the %s time format, and instead of returning an > > error the invalid parameter handler is invoked which (by default) > > terminates the process. > > --- > > libavfor

Re: [FFmpeg-devel] [PATCH] hlsenc: don't use %s for strftime on msvc

2017-02-20 Thread Hendrik Leppkes
On Tue, Feb 21, 2017 at 8:24 AM, Hendrik Leppkes wrote: > MSVC doesn't support the %s time format, and instead of returning an > error the invalid parameter handler is invoked which (by default) > terminates the process. > --- > libavformat/hlsenc.c | 3 ++- > 1 file changed, 2 insertions(+), 1 d

[FFmpeg-devel] [PATCH] hlsenc: don't use %s for strftime on msvc

2017-02-20 Thread Hendrik Leppkes
MSVC doesn't support the %s time format, and instead of returning an error the invalid parameter handler is invoked which (by default) terminates the process. --- libavformat/hlsenc.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c