Re: [FFmpeg-devel] [PATCH] parsing code: add '\r' as whitespace

2016-05-05 Thread Muhammad Faiz
On Fri, May 6, 2016 at 4:14 AM, Michael Niedermayer wrote: > On Thu, May 05, 2016 at 09:49:18PM +0700, Muhammad Faiz wrote: >> for compatibility with platforms that treat it >> as newline > > i think this is ok but it should bump the minor version number of > the libs for which this affects public

Re: [FFmpeg-devel] [PATCH] parsing code: add '\r' as whitespace

2016-05-05 Thread Michael Niedermayer
On Thu, May 05, 2016 at 09:49:18PM +0700, Muhammad Faiz wrote: > for compatibility with platforms that treat it > as newline i think this is ok but it should bump the minor version number of the libs for which this affects public interface also should be split per lib [...] -- Michael GnuPG

[FFmpeg-devel] [PATCH] parsing code: add '\r' as whitespace

2016-05-05 Thread Muhammad Faiz
for compatibility with platforms that treat it as newline Signed-off-by: Muhammad Faiz --- libavfilter/graphparser.c | 2 +- libavutil/avstring.c | 2 +- libavutil/bprint.c| 2 +- libavutil/opt.c | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/libavf