Browse Source

avfilter/graphparser: add '\r' as whitespace

for compatibility with platforms that treat it
as newline

Signed-off-by: Muhammad Faiz <mfcc64@gmail.com>
tags/n3.1
Muhammad Faiz 9 years ago
parent
commit
1d4400ac7f
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      libavfilter/graphparser.c
  2. +1
    -1
      libavfilter/version.h

+ 1
- 1
libavfilter/graphparser.c View 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.


+ 1
- 1
libavfilter/version.h View 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, \


Loading…
Cancel
Save