comparison 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
comparison
equal deleted inserted replaced
12055:34b9819efef5 12056:25e9cb2b9477
119 av_freep(p); 119 av_freep(p);
120 } 120 }
121 121
122 /** 122 /**
123 * Initialize LZW decoder 123 * Initialize LZW decoder
124 * @param s LZW context 124 * @param p LZW context
125 * @param csize initial code size in bits 125 * @param csize initial code size in bits
126 * @param buf input data 126 * @param buf input data
127 * @param buf_size input data size 127 * @param buf_size input data size
128 * @param mode decoder working mode - either GIF or TIFF 128 * @param mode decoder working mode - either GIF or TIFF
129 */ 129 */
159 /** 159 /**
160 * Decode given number of bytes 160 * Decode given number of bytes
161 * NOTE: the algorithm here is inspired from the LZW GIF decoder 161 * NOTE: the algorithm here is inspired from the LZW GIF decoder
162 * written by Steven A. Bennett in 1987. 162 * written by Steven A. Bennett in 1987.
163 * 163 *
164 * @param s LZW context 164 * @param p LZW context
165 * @param buf output buffer 165 * @param buf output buffer
166 * @param len number of bytes to decode 166 * @param len number of bytes to decode
167 * @return number of bytes decoded 167 * @return number of bytes decoded
168 */ 168 */
169 int ff_lzw_decode(LZWState *p, uint8_t *buf, int len){ 169 int ff_lzw_decode(LZWState *p, uint8_t *buf, int len){