diff options
author | Anton Khirnov <anton@khirnov.net> | 2012-05-28 07:27:15 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2012-05-28 12:55:41 +0200 |
commit | 0426c6931070a65a7ec8362d12038ef10fa015ee (patch) | |
tree | 5a448cb66cab0695a644b4ce06ffbd2c09a92669 /libavutil | |
parent | 8271f55bd7d6f4e06786dc8dd7c9538d83ad026a (diff) | |
download | ffmpeg-0426c6931070a65a7ec8362d12038ef10fa015ee.tar.gz |
AVOptions: fix the value printed in out of range error message.
Diffstat (limited to 'libavutil')
-rw-r--r-- | libavutil/opt.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavutil/opt.c b/libavutil/opt.c index af8df7a2eb..9a3c0d47c7 100644 --- a/libavutil/opt.c +++ b/libavutil/opt.c @@ -80,7 +80,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 %lf for parameter '%s' out of range\n", num, o->name); + av_log(obj, AV_LOG_ERROR, "Value %lf for parameter '%s' out of range\n", + num*intnum/den, o->name); return AVERROR(ERANGE); } |