On Sat, Feb 09, 2019 at 01:24:35AM +0100, Carl Eugen Hoyos wrote: > Hi! > > Attached patch fixes ticket #7721 for the reporter. > > Please comment, Carl Eugen
> parseutils.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > 9771b8afcf3e4d4a5fe55cd63f60a03cc25a117a > 0001-lavu-parseutils-Allow-to-parse-100-hours.patch > From ba6abc57d563bcc22607ff5d9f77fdce76000bf6 Mon Sep 17 00:00:00 2001 > From: Carl Eugen Hoyos <ceffm...@gmail.com> > Date: Sat, 9 Feb 2019 01:20:43 +0100 > Subject: [PATCH] lavu/parseutils: Allow to parse >= 100 hours. > > Reported and tested by gamnark. > Fixes ticket #7721. > --- > libavutil/parseutils.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/libavutil/parseutils.c b/libavutil/parseutils.c > index 59bec6c..167e822 100644 > --- a/libavutil/parseutils.c > +++ b/libavutil/parseutils.c > @@ -504,7 +504,7 @@ char *av_small_strptime(const char *p, const char *fmt, > struct tm *dt) > switch(c) { > case 'H': > case 'J': > - val = date_get_num(&p, 0, c == 'H' ? 23 : INT_MAX, 2); > + val = date_get_num(&p, 0, c == 'H' ? 23 : INT_MAX, c == 'H' ? 2 > : 4); LGTM until someone needs more than a bit over a year duration [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB The misfortune of the wise is better than the prosperity of the fool. -- Epicurus
signature.asc
Description: PGP signature
_______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel