Commit 495ed19b authored by Stefano Sabatini's avatar Stefano Sabatini

cmdutils: remove error message from opt_default() in case of missing option

A similar error message is generated by the calling function, avoid
duplication and spurious error message occurring with negated boolean
options introduced in 8bb5680d, which can be reproduced for example with
the command:
ffmpeg -f lavfi -i testsrc=d=0.1 -nostdin -f null -
parent 9b4d9d87
......@@ -547,8 +547,6 @@ int opt_default(void *optctx, const char *opt, const char *arg)
if (consumed)
return 0;
av_log(NULL, AV_LOG_ERROR, "Could not find option '%s' in any of the FFmpeg subsystems "
"(codec, format, scaler, resampler contexts)\n", opt);
return AVERROR_OPTION_NOT_FOUND;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment