diff options
author | Anton Khirnov <anton@khirnov.net> | 2012-06-11 10:18:51 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2012-12-18 20:14:46 +0100 |
commit | 0ec1642b60a5b1a4d913e2b9e3899173dff77e7a (patch) | |
tree | f98d476dc6375f40ccc2377a1bf618799915c5ef | |
parent | 8c9af5b2051b9927f845c7afdfeb30b82670ee77 (diff) | |
download | ffmpeg-0ec1642b60a5b1a4d913e2b9e3899173dff77e7a.tar.gz |
cmdutils: don't log an error in opt_default().
It results in spurious errors when using the new preparser.
-rw-r--r-- | cmdutils.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/cmdutils.c b/cmdutils.c index f2e0651bb9..578ddf3b6f 100644 --- a/cmdutils.c +++ b/cmdutils.c @@ -435,7 +435,6 @@ int opt_default(void *optctx, const char *opt, const char *arg) if (o) return 0; - av_log(NULL, AV_LOG_ERROR, "Unrecognized option '%s'\n", opt); return AVERROR_OPTION_NOT_FOUND; } |