From 8da1fff85a90b2fad1310e629ed2056d6c43f50e Mon Sep 17 00:00:00 2001 From: Clément Bœsch Date: Wed, 10 Apr 2013 22:43:25 +0200 Subject: 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... --- libpostproc/postprocess.c | 2 +- libpostproc/version.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'libpostproc') diff --git a/libpostproc/postprocess.c b/libpostproc/postprocess.c index facfd2cdd9..b34943f983 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 d0d3d431f8..111db44e01 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, \ -- cgit v1.2.3