Browse Source

Merge commit '0b357a8095e72b092cc5c2aacc2f806db75ecae3'

* commit '0b357a8095e72b092cc5c2aacc2f806db75ecae3':
  AVOptions: do not range check flag options.

Conflicts:
	libavutil/opt.c

Merged-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.2-rc1
Michael Niedermayer 12 years ago
parent
commit
f0e43e60cd
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      libavutil/opt.c

+ 2
- 1
libavutil/opt.c View File

@@ -93,7 +93,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) 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) {
if (o->type != AV_OPT_TYPE_FLAGS &&
(o->max * den < num * intnum || o->min * den > num * intnum)) {
av_log(obj, AV_LOG_ERROR, "Value %f for parameter '%s' out of range [%g - %g]\n", 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); num*intnum/den, o->name, o->min, o->max);
return AVERROR(ERANGE); return AVERROR(ERANGE);


Loading…
Cancel
Save