mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avutil/opt: Avoid division by 0
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
a141948a8b
commit
52835cb8e1
@ -85,8 +85,9 @@ static int write_number(void *obj, const AVOption *o, void *dst, double num, int
|
|||||||
{
|
{
|
||||||
if (o->type != AV_OPT_TYPE_FLAGS &&
|
if (o->type != AV_OPT_TYPE_FLAGS &&
|
||||||
(o->max * den < num * intnum || o->min * den > num * intnum)) {
|
(o->max * den < num * intnum || o->min * den > num * intnum)) {
|
||||||
|
num = den ? num*intnum/den : (num*intnum ? INFINITY : NAN);
|
||||||
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, o->name, o->min, o->max);
|
||||||
return AVERROR(ERANGE);
|
return AVERROR(ERANGE);
|
||||||
}
|
}
|
||||||
if (o->type == AV_OPT_TYPE_FLAGS) {
|
if (o->type == AV_OPT_TYPE_FLAGS) {
|
||||||
|
Loading…
Reference in New Issue
Block a user