[FFmpeg-cvslog] AVOptions: fix the value printed in out of range error message.
Anton Khirnov
git at videolan.org
Mon May 28 22:14:30 CEST 2012
ffmpeg | branch: master | Anton Khirnov <anton at khirnov.net> | Mon May 28 07:27:15 2012 +0200| [0426c6931070a65a7ec8362d12038ef10fa015ee] | committer: Anton Khirnov
AVOptions: fix the value printed in out of range error message.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=0426c6931070a65a7ec8362d12038ef10fa015ee
---
libavutil/opt.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/libavutil/opt.c b/libavutil/opt.c
index af8df7a..9a3c0d4 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);
}
More information about the ffmpeg-cvslog
mailing list