You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-09-16 08:36:51 +02:00
vsrc_life: fix comment in parse_rule()
This commit is contained in:
@@ -108,8 +108,8 @@ static int parse_rule(uint16_t *born_rule, uint16_t *stay_rule,
|
||||
if (*p)
|
||||
goto error;
|
||||
} else {
|
||||
/* parse the rule as a number, expressed in the form STAY|(BORN<<9),
|
||||
* where STAY and DEATH encode the corresponding 9-bits rule */
|
||||
/* parse rule as a number, expressed in the form STAY|(BORN<<9),
|
||||
* where STAY and BORN encode the corresponding 9-bits rule */
|
||||
long int rule = strtol(rule_str, &tail, 10);
|
||||
if (*tail)
|
||||
goto error;
|
||||
|
Reference in New Issue
Block a user