mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-02-03 13:24:05 +00:00
vsrc_life: fix comment in parse_rule()
This commit is contained in:
parent
3af5ddb24b
commit
7ecabc8505
@ -108,8 +108,8 @@ static int parse_rule(uint16_t *born_rule, uint16_t *stay_rule,
|
|||||||
if (*p)
|
if (*p)
|
||||||
goto error;
|
goto error;
|
||||||
} else {
|
} else {
|
||||||
/* parse the rule as a number, expressed in the form STAY|(BORN<<9),
|
/* parse rule as a number, expressed in the form STAY|(BORN<<9),
|
||||||
* where STAY and DEATH encode the corresponding 9-bits rule */
|
* where STAY and BORN encode the corresponding 9-bits rule */
|
||||||
long int rule = strtol(rule_str, &tail, 10);
|
long int rule = strtol(rule_str, &tail, 10);
|
||||||
if (*tail)
|
if (*tail)
|
||||||
goto error;
|
goto error;
|
||||||
|
Loading…
Reference in New Issue
Block a user