Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefano Sabatini <stefasab@gmail.com>2011-12-05 02:49:03 +0400
committerStefano Sabatini <stefasab@gmail.com>2011-12-06 18:03:51 +0400
commit7ecabc850558467cd1fcb8769aae16b1f6956073 (patch)
tree3911f2c8728200a7f8c6435b8c9fbd86b03c64fa /libavfilter/vsrc_life.c
parent3af5ddb24b91cfa6e2392b85ef1beafda7e85225 (diff)
vsrc_life: fix comment in parse_rule()
Diffstat (limited to 'libavfilter/vsrc_life.c')
-rw-r--r--libavfilter/vsrc_life.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/vsrc_life.c b/libavfilter/vsrc_life.c
index 79e064ab2f..ce0eeccfbd 100644
--- a/libavfilter/vsrc_life.c
+++ b/libavfilter/vsrc_life.c
@@ -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;