[FFmpeg-cvslog] lavfi: add pp to the ':'-to-'|' compat layer.
Clément Bœsch
git at videolan.org
Thu Apr 11 15:53:08 CEST 2013
ffmpeg | branch: master | Clément Bœsch <ubitux at gmail.com> | Thu Apr 11 15:52:40 2013 +0200| [ad9e66a56556a3135363121e8e115e4a592a16e2] | committer: Clément Bœsch
lavfi: add pp to the ':'-to-'|' compat layer.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=ad9e66a56556a3135363121e8e115e4a592a16e2
---
libavfilter/avfilter.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c
index 49c7fef..3f69836 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);
More information about the ffmpeg-cvslog
mailing list