mp: extend syntax, make it accept mp=filter=params

Make the mp wrapper accept the syntax mp=filter=params as alternative
to mp=filter:params. The alternative syntax is sligthly more readable
and should simplify copy&paste of MPlayer filter strings to the mp
filter.
oldabi
Stefano Sabatini 14 years ago
parent 681ba7229e
commit c50998675d
  1. 2
      libavfilter/vf_mp.c

@ -739,7 +739,7 @@ static av_cold int init(AVFilterContext *ctx, const char *args, void *opaque)
m->avfctx= ctx;
if(!args || 1!=sscanf(args, "%255[^:]", name)){
if(!args || 1!=sscanf(args, "%255[^:=]", name)){
av_log(ctx, AV_LOG_ERROR, "Invalid parameter.\n");
return AVERROR(EINVAL);
}

Loading…
Cancel
Save