summaryrefslogtreecommitdiff
path: root/libavutil/opt.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2011-11-20 14:44:41 +0100
committerMichael Niedermayer <michaelni@gmx.at>2011-11-20 15:02:36 +0100
commita9011623ea95f051f740bffd2d473f28fd1f250e (patch)
tree0b67a1ba3c7e192dc5130bc50ae2c14244bbb50a /libavutil/opt.c
parente8ab4bac0c81ff3d6b531a6008e2f406b174452a (diff)
avopts: Fix random values being printed in error messages:
Bug introduced in: commit 7bb1807c2dd9623842f1c6d454e7f2892b5bc8d7 Author: Anton Khirnov <anton@khirnov.net> Date: Tue Aug 23 12:58:49 2011 +0200 AVOptions: refactor set_number/write_number write_number() does the actual writing of the supplied number to destination. Move finding the option and choosing destination address out of it.
Diffstat (limited to 'libavutil/opt.c')
-rw-r--r--libavutil/opt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/opt.c b/libavutil/opt.c
index ca31be3a9a..1d7ef38f1a 100644
--- a/libavutil/opt.c
+++ b/libavutil/opt.c
@@ -80,7 +80,7 @@ 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 %f for parameter '%s' out of range\n", num*intnum/den, o->name);
return AVERROR(ERANGE);
}