Skip to content

Commit

Permalink
avfilter/graphparser: add '\r' as whitespace
Browse files Browse the repository at this point in the history
for compatibility with platforms that treat it
as newline

Signed-off-by: Muhammad Faiz <[email protected]>
  • Loading branch information
mfcc64 committed May 6, 2016
1 parent 8306593 commit 1d4400a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion libavfilter/graphparser.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
#include "libavutil/mem.h"
#include "avfilter.h"

#define WHITESPACES " \n\t"
#define WHITESPACES " \n\t\r"

/**
* Link two filters together.
Expand Down
2 changes: 1 addition & 1 deletion libavfilter/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -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, \
Expand Down

0 comments on commit 1d4400a

Please sign in to comment.