diff lzw.c @ 12056:25e9cb2b9477 libavcodec

Fix misspelled parameter names in Doxygen documentation. This fixes one Doxygen warning each.
author diego
date Fri, 02 Jul 2010 10:49:29 +0000
parents 7dd2a45249a9
children
line wrap: on
line diff
--- a/lzw.c	Fri Jul 02 10:37:13 2010 +0000
+++ b/lzw.c	Fri Jul 02 10:49:29 2010 +0000
@@ -121,7 +121,7 @@
 
 /**
  * Initialize LZW decoder
- * @param s LZW context
+ * @param p LZW context
  * @param csize initial code size in bits
  * @param buf input data
  * @param buf_size input data size
@@ -161,7 +161,7 @@
  * NOTE: the algorithm here is inspired from the LZW GIF decoder
  *  written by Steven A. Bennett in 1987.
  *
- * @param s LZW context
+ * @param p LZW context
  * @param buf output buffer
  * @param len number of bytes to decode
  * @return number of bytes decoded