lavu/opt: clarify error message in set_key_value_pair()

This commit is contained in:
Stefano Sabatini 2012-04-25 17:44:19 +02:00
parent 39de8343f9
commit d4f8d717ab
1 changed files with 1 additions and 1 deletions

View File

@ -684,7 +684,7 @@ static int parse_key_value_pair(void *ctx, const char **buf,
return AVERROR(EINVAL);
}
av_log(ctx, AV_LOG_DEBUG, "Setting value '%s' for key '%s'\n", val, key);
av_log(ctx, AV_LOG_DEBUG, "Setting entry with key '%s' to value '%s'\n", key, val);
ret = av_opt_set(ctx, key, val, 0);
if (ret == AVERROR_OPTION_NOT_FOUND)