Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2012-06-11 12:18:51 +0400
committerAnton Khirnov <anton@khirnov.net>2012-12-18 23:14:46 +0400
commit0ec1642b60a5b1a4d913e2b9e3899173dff77e7a (patch)
treef98d476dc6375f40ccc2377a1bf618799915c5ef
parent8c9af5b2051b9927f845c7afdfeb30b82670ee77 (diff)
cmdutils: don't log an error in opt_default().
It results in spurious errors when using the new preparser.
-rw-r--r--cmdutils.c1
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;
}