diff options
author | Clément Bœsch <ubitux@gmail.com> | 2013-04-10 22:43:25 +0200 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2013-04-10 23:16:03 +0200 |
commit | 8da1fff85a90b2fad1310e629ed2056d6c43f50e (patch) | |
tree | 5d2b159b96daf0d88a513be459362c78e86f5993 /libpostproc/postprocess.c | |
parent | f8eabab04d1b429bc0332c06a46ae3c344a4cb15 (diff) | |
download | ffmpeg-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/postprocess.c')
-rw-r--r-- | libpostproc/postprocess.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |