You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
avopts: Fix random values being printed in error messages:
Bug introduced in:
commit 7bb1807c2d
Author: Anton Khirnov <anton@khirnov.net>
Date: Tue Aug 23 12:58:49 2011 +0200
AVOptions: refactor set_number/write_number
write_number() does the actual writing of the supplied
number to destination. Move finding the option and choosing destination
address out of it.
This commit is contained in:
@@ -80,7 +80,7 @@ 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->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 %f for parameter '%s' out of range\n", num*intnum/den, o->name);
|
||||||
return AVERROR(ERANGE);
|
return AVERROR(ERANGE);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user