[FFmpeg-cvslog] vsrc_life: fix comment in parse_rule()

Stefano Sabatini git at videolan.org
Tue Dec 6 15:06:36 CET 2011


ffmpeg | branch: master | Stefano Sabatini <stefasab at gmail.com> | Sun Dec  4 23:49:03 2011 +0100| [7ecabc850558467cd1fcb8769aae16b1f6956073] | committer: Stefano Sabatini

vsrc_life: fix comment in parse_rule()

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=7ecabc850558467cd1fcb8769aae16b1f6956073
---

 libavfilter/vsrc_life.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/libavfilter/vsrc_life.c b/libavfilter/vsrc_life.c
index 79e064a..ce0eecc 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;



More information about the ffmpeg-cvslog mailing list