mirror of https://git.ffmpeg.org/ffmpeg.git
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.
This commit is contained in:
parent
681ba7229e
commit
c50998675d
|
@ -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…
Reference in New Issue