Browse Source

AVOptions: fix the value printed in out of range error message.

tags/n1.0
Anton Khirnov 13 years ago
parent
commit
0426c69310
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      libavutil/opt.c

+ 2
- 1
libavutil/opt.c View File

@@ -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);
}



Loading…
Cancel
Save