diff options
author | Muhammad Faiz <mfcc64@gmail.com> | 2016-05-06 07:37:12 +0700 |
---|---|---|
committer | Muhammad Faiz <mfcc64@gmail.com> | 2016-05-06 07:37:12 +0700 |
commit | 1d4400ac7fb057cbfff62ab4ce72e7b19c68f929 (patch) | |
tree | bcb58e503e394868538e3d0035c4e2d29be36733 | |
parent | 83065939cb84d79f1880bf3470e031619b55988b (diff) | |
download | ffmpeg-1d4400ac7fb057cbfff62ab4ce72e7b19c68f929.tar.gz |
avfilter/graphparser: add '\r' as whitespace
for compatibility with platforms that treat it
as newline
Signed-off-by: Muhammad Faiz <mfcc64@gmail.com>
-rw-r--r-- | libavfilter/graphparser.c | 2 | ||||
-rw-r--r-- | libavfilter/version.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/graphparser.c b/libavfilter/graphparser.c index 8d15b5dfe0..ce5be1b937 100644 --- a/libavfilter/graphparser.c +++ b/libavfilter/graphparser.c @@ -27,7 +27,7 @@ #include "libavutil/mem.h" #include "avfilter.h" -#define WHITESPACES " \n\t" +#define WHITESPACES " \n\t\r" /** * Link two filters together. diff --git a/libavfilter/version.h b/libavfilter/version.h index d7f9c546a9..1a9c4ac5cf 100644 --- a/libavfilter/version.h +++ b/libavfilter/version.h @@ -30,7 +30,7 @@ #include "libavutil/version.h" #define LIBAVFILTER_VERSION_MAJOR 6 -#define LIBAVFILTER_VERSION_MINOR 44 +#define LIBAVFILTER_VERSION_MINOR 45 #define LIBAVFILTER_VERSION_MICRO 100 #define LIBAVFILTER_VERSION_INT AV_VERSION_INT(LIBAVFILTER_VERSION_MAJOR, \ |