diff rle.c @ 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 2b72f9bc4f06
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;