mirror of https://git.ffmpeg.org/ffmpeg.git
cmdutils: don't log an error in opt_default().
It results in spurious errors when using the new preparser.
This commit is contained in:
parent
8c9af5b205
commit
0ec1642b60
|
@ -435,7 +435,6 @@ int opt_default(void *optctx, const char *opt, const char *arg)
|
||||||
|
|
||||||
if (o)
|
if (o)
|
||||||
return 0;
|
return 0;
|
||||||
av_log(NULL, AV_LOG_ERROR, "Unrecognized option '%s'\n", opt);
|
|
||||||
return AVERROR_OPTION_NOT_FOUND;
|
return AVERROR_OPTION_NOT_FOUND;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue