diff 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
line wrap: on
line diff
--- a/rle.h	Tue Apr 03 06:40:21 2007 +0000
+++ b/rle.h	Tue Apr 03 06:46:12 2007 +0000
@@ -33,6 +33,6 @@
  * @return Size of output in bytes, or -1 if larger than out_size
  */
 int ff_rle_encode(uint8_t *outbuf, int out_size, const uint8_t *inbuf, int bpp, int w,
-                 int8_t add_rep, uint8_t xor_rep, int8_t add_raw, uint8_t xor_raw);
+                  int add_rep, int xor_rep, int add_raw, int xor_raw);
 
 #endif /* RLE_H */