diff options
author | Diego Biurrun | 2010-07-02 10:49:29 +0000 |
---|---|---|
committer | Diego Biurrun | 2010-07-02 10:49:29 +0000 |
commit | 9a58234feaae8b387b7a7e41b643ec619534d26a (patch) | |
tree | eaba3937ef0f47cfc6e1fb471c6e17147fd1596a /libavcodec/lzw.c | |
parent | 5298b070c294c211a8777c8c0d61c42bbfd4d1d3 (diff) |
Fix misspelled parameter names in Doxygen documentation.
This fixes one Doxygen warning each.
Originally committed as revision 23970 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/lzw.c')
-rw-r--r-- | libavcodec/lzw.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/lzw.c b/libavcodec/lzw.c index 8043789d56..aa886910be 100644 --- a/libavcodec/lzw.c +++ b/libavcodec/lzw.c @@ -121,7 +121,7 @@ av_cold void ff_lzw_decode_close(LZWState **p) /** * 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 @@ int ff_lzw_decode_init(LZWState *p, int csize, const uint8_t *buf, int buf_size, * 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 |