diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2012-11-04 15:38:35 +0100 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2012-11-07 23:17:57 +0100 |
commit | ef4dc3e55b677b27f6e8f471946c711bcf92da82 (patch) | |
tree | d96f2625fbcdecd520c35c2aee507e1b48151e6d /libavutil/opt.c | |
parent | 98cbbabadb70282a80fdb952a51f832d5f322d93 (diff) | |
download | ffmpeg-ef4dc3e55b677b27f6e8f471946c711bcf92da82.tar.gz |
lavu/opt: show valid range in case of out-of-range value
Improve feedback.
Diffstat (limited to 'libavutil/opt.c')
-rw-r--r-- | libavutil/opt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavutil/opt.c b/libavutil/opt.c index 11e757eb43..05ae8645f3 100644 --- a/libavutil/opt.c +++ b/libavutil/opt.c @@ -86,8 +86,8 @@ static int read_number(const AVOption *o, void *dst, double *num, int *den, int6 static int write_number(void *obj, const AVOption *o, void *dst, double num, int den, int64_t intnum) { if (o->max*den < num*intnum || o->min*den > num*intnum) { - av_log(obj, AV_LOG_ERROR, "Value %f for parameter '%s' out of range\n", - num*intnum/den, o->name); + av_log(obj, AV_LOG_ERROR, "Value %f for parameter '%s' out of range [%g - %g]\n", + num*intnum/den, o->name, o->min, o->max); return AVERROR(ERANGE); } |