From 162126bb174c9ad690736d16c6f8b431b7127c5b Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Mon, 28 Oct 2013 17:39:07 +0100 Subject: avutil/opt: check flags validity in write_number() Signed-off-by: Michael Niedermayer --- libavutil/opt.c | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'libavutil/opt.c') diff --git a/libavutil/opt.c b/libavutil/opt.c index 2bf5346ac2..e00bd746d1 100644 --- a/libavutil/opt.c +++ b/libavutil/opt.c @@ -99,6 +99,15 @@ static int write_number(void *obj, const AVOption *o, void *dst, double num, int num*intnum/den, o->name, o->min, o->max); return AVERROR(ERANGE); } + if (o->type == AV_OPT_TYPE_FLAGS) { + double d = num*intnum/den; + if (d < -1.5 || d > 0xFFFFFFFF+0.5 || (lrint(d*256) & 255)) { + av_log(obj, AV_LOG_ERROR, + "Value %f for parameter '%s' is not a valid set of 32bit integer flags\n", + num*intnum/den, o->name); + return AVERROR(ERANGE); + } + } switch (o->type) { case AV_OPT_TYPE_FLAGS: -- cgit v1.2.3