summaryrefslogtreecommitdiff
path: root/libavfilter
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2011-11-22 18:54:45 +0100
committerMichael Niedermayer <michaelni@gmx.at>2011-11-23 13:22:46 +0100
commit4d874fc2b1c3ef739fb2934c487b1ec649038f41 (patch)
tree56e12fc1e1b8783c60d3733922e12ff8e2153abe /libavfilter
parent8cda755c2f510fe08b7c78d95392496535582e2f (diff)
vf_mp: rewrite vf_mp filter warning message
Warning text by: Clément Bœsch <ubitux@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter')
-rw-r--r--libavfilter/vf_mp.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/libavfilter/vf_mp.c b/libavfilter/vf_mp.c
index 6541f6d3f9..a61f0866c1 100644
--- a/libavfilter/vf_mp.c
+++ b/libavfilter/vf_mp.c
@@ -711,11 +711,6 @@ 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)){
@@ -734,6 +729,10 @@ static av_cold int init(AVFilterContext *ctx, const char *args, void *opaque)
return AVERROR(EINVAL);
}
+ av_log(ctx, AV_LOG_WARNING,
+ "'%s' is a wrapped MPlayer filter (libmpcodecs). This filter may be removed\n"
+ "once it has been ported to a native libavfilter.\n", name);
+
memset(&m->vf,0,sizeof(m->vf));
m->vf.info= filters[i];