comparison rle.h @ 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 c4a4495715dd
children
comparison
equal deleted inserted replaced
12055:34b9819efef5 12056:25e9cb2b9477
26 /** 26 /**
27 * RLE compress the row, with maximum size of out_size. Value before repeated bytes is (count ^ xor_rep) + add_rep. 27 * RLE compress the row, with maximum size of out_size. Value before repeated bytes is (count ^ xor_rep) + add_rep.
28 * Value before raw bytes is (count ^ xor_raw) + add_raw. 28 * Value before raw bytes is (count ^ xor_raw) + add_raw.
29 * @param outbuf Output buffer 29 * @param outbuf Output buffer
30 * @param out_size Maximum output size 30 * @param out_size Maximum output size
31 * @param ptr Input buffer 31 * @param inbuf Input buffer
32 * @param bpp Bytes per pixel 32 * @param bpp Bytes per pixel
33 * @param w Image width 33 * @param w Image width
34 * @return Size of output in bytes, or -1 if larger than out_size 34 * @return Size of output in bytes, or -1 if larger than out_size
35 */ 35 */
36 int ff_rle_encode(uint8_t *outbuf, int out_size, const uint8_t *inbuf, int bpp, int w, 36 int ff_rle_encode(uint8_t *outbuf, int out_size, const uint8_t *inbuf, int bpp, int w,