diff options
author | Clément Bœsch <ubitux@gmail.com> | 2013-04-11 15:52:40 +0200 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2013-04-11 15:52:46 +0200 |
commit | ad9e66a56556a3135363121e8e115e4a592a16e2 (patch) | |
tree | 1cb4288503700615ffe1fddbab94cc47c4ae3863 | |
parent | cf7d3846fc865df47bd64f7d4d10bbedf9e3a17b (diff) | |
download | ffmpeg-ad9e66a56556a3135363121e8e115e4a592a16e2.tar.gz |
lavfi: add pp to the ':'-to-'|' compat layer.
-rw-r--r-- | libavfilter/avfilter.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c index 49c7fef8d1..3f69836dbe 100644 --- a/libavfilter/avfilter.c +++ b/libavfilter/avfilter.c @@ -756,7 +756,8 @@ int avfilter_init_filter(AVFilterContext *filter, const char *args, void *opaque !strcmp(filter->filter->name, "noformat") || !strcmp(filter->filter->name, "frei0r") || !strcmp(filter->filter->name, "frei0r_src") || - !strcmp(filter->filter->name, "ocv")) { + !strcmp(filter->filter->name, "ocv") || + !strcmp(filter->filter->name, "pp")) { /* a hack for compatibility with the old syntax * replace colons with |s */ char *copy = av_strdup(args); |