mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
AVOptions: do not range check flag options.
It does not make sense in the vast majority of use cases, no currently defined AV_OPT_TYPE_FLAGS options in Libav set the range to anything nontrivial, and many of those get it wrong (the "correct" range is INT_MIN to INT_MAX so that the builtin constant "all" works).
This commit is contained in:
parent
94603feb1b
commit
0b357a8095
@ -61,7 +61,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) {
|
||||
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\n",
|
||||
num*intnum/den, o->name);
|
||||
return AVERROR(ERANGE);
|
||||
|
Loading…
Reference in New Issue
Block a user