comparison rle.h @ 4772:3cd67a410b68 libavcodec

dont use *int8_t for the arguments (ive missed that in the patches ...)
author michael
date Tue, 03 Apr 2007 06:46:12 +0000
parents 7cd3ffe4897f
children 4394344397d8
comparison
equal deleted inserted replaced
4771:7cd3ffe4897f 4772:3cd67a410b68
31 * @param bpp Bytes per pixel 31 * @param bpp Bytes per pixel
32 * @param w Image width 32 * @param w Image width
33 * @return Size of output in bytes, or -1 if larger than out_size 33 * @return Size of output in bytes, or -1 if larger than out_size
34 */ 34 */
35 int ff_rle_encode(uint8_t *outbuf, int out_size, const uint8_t *inbuf, int bpp, int w, 35 int ff_rle_encode(uint8_t *outbuf, int out_size, const uint8_t *inbuf, int bpp, int w,
36 int8_t add_rep, uint8_t xor_rep, int8_t add_raw, uint8_t xor_raw); 36 int add_rep, int xor_rep, int add_raw, int xor_raw);
37 37
38 #endif /* RLE_H */ 38 #endif /* RLE_H */