OSDN Git Service

avfilter/graphparser: add '\r' as whitespace
authorMuhammad Faiz <mfcc64@gmail.com>
Fri, 6 May 2016 00:37:12 +0000 (07:37 +0700)
committerMuhammad Faiz <mfcc64@gmail.com>
Fri, 6 May 2016 00:37:12 +0000 (07:37 +0700)
for compatibility with platforms that treat it
as newline

Signed-off-by: Muhammad Faiz <mfcc64@gmail.com>
libavfilter/graphparser.c
libavfilter/version.h

index 8d15b5d..ce5be1b 100644 (file)
@@ -27,7 +27,7 @@
 #include "libavutil/mem.h"
 #include "avfilter.h"
 
-#define WHITESPACES " \n\t"
+#define WHITESPACES " \n\t\r"
 
 /**
  * Link two filters together.
index d7f9c54..1a9c4ac 100644 (file)
@@ -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, \