diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-01-16 15:41:47 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-01-20 03:27:01 +0100 |
commit | 61d7f8fed4f8d622a2428b7657ef30c67012f30a (patch) | |
tree | c5cbca80d6bb793705114d580c377c4091028f98 /libavfilter | |
parent | fd4c59b51903e1748643fc4ba530e0e7544d1527 (diff) | |
download | ffmpeg-61d7f8fed4f8d622a2428b7657ef30c67012f30a.tar.gz |
Warn about vf_mp
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/vf_mp.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libavfilter/vf_mp.c b/libavfilter/vf_mp.c index 1f0a311036..4c653e41ce 100644 --- a/libavfilter/vf_mp.c +++ b/libavfilter/vf_mp.c @@ -732,6 +732,11 @@ static av_cold int init(AVFilterContext *ctx, const char *args, void *opaque) char name[256]; int i; + av_log(ctx, AV_LOG_WARNING, +"This is a unholy filter, it will be purified by the ffmpeg exorcist team\n" +"which will change its syntax from dark -vf mp to light -vf.\n" +"Thou shalst not make spells or scripts that depend on it\n"); + m->avfctx= ctx; if(!args || 1!=sscanf(args, "%255[^:]", name)){ |