mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
lavu/opt: do not filter out the initial sign character except for flags
This allows parsing of special-case negative numbers like decibels.
This commit is contained in:
parent
5312268b34
commit
9d5c62ba5b
@ -154,10 +154,15 @@ static int set_string_number(void *obj, const AVOption *o, const char *val, void
|
|||||||
double d, num = 1;
|
double d, num = 1;
|
||||||
int64_t intnum = 1;
|
int64_t intnum = 1;
|
||||||
|
|
||||||
if (*val == '+' || *val == '-')
|
i = 0;
|
||||||
cmd = *(val++);
|
if (*val == '+' || *val == '-') {
|
||||||
|
if (o->type == AV_OPT_TYPE_FLAGS)
|
||||||
|
cmd = *(val++);
|
||||||
|
else if (!notfirst)
|
||||||
|
buf[i++] = *val;
|
||||||
|
}
|
||||||
|
|
||||||
for (i = 0; i < sizeof(buf) - 1 && val[i] && val[i] != '+' && val[i] != '-'; i++)
|
for (; i < sizeof(buf) - 1 && val[i] && val[i] != '+' && val[i] != '-'; i++)
|
||||||
buf[i] = val[i];
|
buf[i] = val[i];
|
||||||
buf[i] = 0;
|
buf[i] = 0;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user