changeset 4447:ed710b7b5f72 libavcodec

Documentation fix: Copy functions should "work" fine for cnt == 0
author reimar
date Wed, 31 Jan 2007 20:26:32 +0000
parents b8b844ae5937
children 2dd1ace1919c
files lzo.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lzo.c	Wed Jan 31 17:16:13 2007 +0000
+++ b/lzo.c	Wed Jan 31 20:26:32 2007 +0000
@@ -81,7 +81,7 @@
 
 /**
  * \brief copy bytes from input to output buffer with checking
- * \param cnt number of bytes to copy, must be > 0
+ * \param cnt number of bytes to copy, must be >= 0
  */
 static inline void copy(LZOContext *c, int cnt) {
     register uint8_t *src = c->in;
@@ -109,7 +109,7 @@
 /**
  * \brief copy previously decoded bytes to current position
  * \param back how many bytes back we start
- * \param cnt number of bytes to copy, must be > 0
+ * \param cnt number of bytes to copy, must be >= 0
  *
  * cnt > back is valid, this will copy the bytes we just copied,
  * thus creating a repeating pattern with a period length of back.