cmdutils: clarify log message, in case of option routed to both codec and mux/demux layer

This commit is contained in:
Stefano Sabatini 2013-03-10 11:05:32 +01:00
parent 63edd2f989
commit a2a848406f

View File

@ -497,7 +497,7 @@ int opt_default(void *optctx, const char *opt, const char *arg)
AV_OPT_SEARCH_CHILDREN | AV_OPT_SEARCH_FAKE_OBJ))) { AV_OPT_SEARCH_CHILDREN | AV_OPT_SEARCH_FAKE_OBJ))) {
av_dict_set(&format_opts, opt, arg, FLAGS); av_dict_set(&format_opts, opt, arg, FLAGS);
if (consumed) if (consumed)
av_log(NULL, AV_LOG_VERBOSE, "Routing %s to codec and muxer layer\n", opt); av_log(NULL, AV_LOG_VERBOSE, "Routing option %s to both codec and muxer layer\n", opt);
consumed = 1; consumed = 1;
} }
#if CONFIG_SWSCALE #if CONFIG_SWSCALE