changeset 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 65ee324848ac
files rle.c rle.h
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/rle.c	Tue Apr 03 06:40:21 2007 +0000
+++ b/rle.c	Tue Apr 03 06:46:12 2007 +0000
@@ -56,7 +56,7 @@
 }
 
 int ff_rle_encode(uint8_t *outbuf, int out_size, const uint8_t *ptr , 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)
 {
     int count, x;
     uint8_t *out = outbuf;
--- 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 */