Re: [FFmpeg-devel] [PATCH] add locale month names to av_small_strptime

2017-02-26 Thread Micah Galizia
On Sun, Feb 26, 2017 at 11:12 AM, Michael Niedermayer wrote: > On Thu, Feb 23, 2017 at 09:34:28PM -0500, Micah Galizia wrote: >> Hello, >> >> Is someone able to take a look at this and accept or reject it -- its >> been a few days since I submitted. > > applied > > thx Awesome -- thank you. On to

Re: [FFmpeg-devel] [PATCH] add locale month names to av_small_strptime

2017-02-26 Thread Michael Niedermayer
On Thu, Feb 23, 2017 at 09:34:28PM -0500, Micah Galizia wrote: > Hello, > > Is someone able to take a look at this and accept or reject it -- its > been a few days since I submitted. applied thx [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB When the tyrant h

Re: [FFmpeg-devel] [PATCH] add locale month names to av_small_strptime

2017-02-23 Thread Micah Galizia
Hello, Is someone able to take a look at this and accept or reject it -- its been a few days since I submitted. Sorry to pester -- thanks in advance. On Mon, Feb 20, 2017 at 7:48 PM, Micah Galizia wrote: > Signed-off-by: Micah Galizia > --- > libavutil/parseutils.c | 28

[FFmpeg-devel] [PATCH] add locale month names to av_small_strptime

2017-02-21 Thread Micah Galizia
Signed-off-by: Micah Galizia --- libavutil/parseutils.c | 28 libavutil/tests/parseutils.c | 7 +++ tests/ref/fate/parseutils| 7 +++ 3 files changed, 42 insertions(+) diff --git a/libavutil/parseutils.c b/libavutil/parseutils.c index 86d3dac..7ca

[FFmpeg-devel] [PATCH] add locale month names to av_small_strptime

2017-02-20 Thread Micah Galizia
Signed-off-by: Micah Galizia --- libavutil/parseutils.c | 28 libavutil/tests/parseutils.c | 7 +++ tests/ref/fate/parseutils| 7 +++ 3 files changed, 42 insertions(+) diff --git a/libavutil/parseutils.c b/libavutil/parseutils.c index 86d3dac..7ca

Re: [FFmpeg-devel] [PATCH] add locale month names to av_small_strptime

2017-02-20 Thread Micah Galizia
Sorry about that -- this actually makes sense now -- I thought it was a bit odd that the test program had no asserts or anything to validate the output... I've addressed the fate issues in this patch -- thanks again for the review. ___ ffmpeg-devel mail

Re: [FFmpeg-devel] [PATCH] add locale month names to av_small_strptime

2017-02-20 Thread Michael Niedermayer
On Mon, Feb 20, 2017 at 03:30:43PM -0500, Micah Galizia wrote: > Signed-off-by: Micah Galizia > --- > libavutil/parseutils.c | 28 > libavutil/tests/parseutils.c | 7 +++ > 2 files changed, 35 insertions(+) breaks fate --- ./tests/ref/fate/parseutils 2017-

[FFmpeg-devel] [PATCH] add locale month names to av_small_strptime

2017-02-20 Thread Micah Galizia
Signed-off-by: Micah Galizia --- libavutil/parseutils.c | 28 libavutil/tests/parseutils.c | 7 +++ 2 files changed, 35 insertions(+) diff --git a/libavutil/parseutils.c b/libavutil/parseutils.c index 86d3dac..7ca07b3 100644 --- a/libavutil/parseutils.c ++

Re: [FFmpeg-devel] [PATCH] add locale month names to av_small_strptime

2017-02-20 Thread Nicolas George
Le primidi 1er ventôse, an CCXXV, Micah Galizia a écrit : > +static const char *mo_abr[] = { "jan", "feb", "mar", "apr", "may", "jun", > + "jul", "aug", "sep", "oct", "nov", "dec" }; > + > +static const char *mo_full[] = { "uary", "ruary", "ch", "il", NULL, "e", "y", >

[FFmpeg-devel] [PATCH] add locale month names to av_small_strptime

2017-02-19 Thread Micah Galizia
--- libavutil/parseutils.c | 31 +++ libavutil/tests/parseutils.c | 5 + 2 files changed, 36 insertions(+) diff --git a/libavutil/parseutils.c b/libavutil/parseutils.c index 86d3dac..a273216 100644 --- a/libavutil/parseutils.c +++ b/libavutil/parseutils.c @@

[FFmpeg-devel] [PATCH] add locale month names to av_small_strptime

2017-02-19 Thread Micah Galizia
Hello, In preparation for evaluating cookie expiry values, av_small_strptime needs to handle the month names. This patch adds said names (full and abbreviated). Thanks in advance, Micah ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmp