summaryrefslogtreecommitdiffstats
path: root/libpostproc
diff options
context:
space:
mode:
authorClément Bœsch <ubitux@gmail.com>2013-04-10 22:43:25 +0200
committerClément Bœsch <ubitux@gmail.com>2013-04-10 23:16:03 +0200
commit8da1fff85a90b2fad1310e629ed2056d6c43f50e (patch)
tree5d2b159b96daf0d88a513be459362c78e86f5993 /libpostproc
parentf8eabab04d1b429bc0332c06a46ae3c344a4cb15 (diff)
downloadffmpeg-streaming-8da1fff85a90b2fad1310e629ed2056d6c43f50e.zip
ffmpeg-streaming-8da1fff85a90b2fad1310e629ed2056d6c43f50e.tar.gz
lavfi/pp: switch to an AVOptions-based system.
Also add and use the '|' separator instead of ':' since it's incompatible with the new option system...
Diffstat (limited to 'libpostproc')
-rw-r--r--libpostproc/postprocess.c2
-rw-r--r--libpostproc/version.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/libpostproc/postprocess.c b/libpostproc/postprocess.c
index facfd2c..b34943f 100644
--- a/libpostproc/postprocess.c
+++ b/libpostproc/postprocess.c
@@ -666,7 +666,7 @@ pp_mode *pp_get_mode_by_name_and_quality(const char *name, int quality)
char temp[GET_MODE_BUFFER_SIZE];
char *p= temp;
static const char filterDelimiters[] = ",/";
- static const char optionDelimiters[] = ":";
+ static const char optionDelimiters[] = ":|";
struct PPMode *ppMode;
char *filterToken;
diff --git a/libpostproc/version.h b/libpostproc/version.h
index d0d3d43..111db44 100644
--- a/libpostproc/version.h
+++ b/libpostproc/version.h
@@ -29,7 +29,7 @@
#include "libavutil/avutil.h"
#define LIBPOSTPROC_VERSION_MAJOR 52
-#define LIBPOSTPROC_VERSION_MINOR 2
+#define LIBPOSTPROC_VERSION_MINOR 3
#define LIBPOSTPROC_VERSION_MICRO 100
#define LIBPOSTPROC_VERSION_INT AV_VERSION_INT(LIBPOSTPROC_VERSION_MAJOR, \
OpenPOWER on IntegriCloud