[Ffmpeg-cvslog] r8603 - in trunk/libavcodec: rle.c rle.h
michael
subversion
Tue Apr 3 08:46:12 CEST 2007
Author: michael
Date: Tue Apr 3 08:46:12 2007
New Revision: 8603
Modified:
trunk/libavcodec/rle.c
trunk/libavcodec/rle.h
Log:
dont use *int8_t for the arguments (ive missed that in the patches ...)
Modified: trunk/libavcodec/rle.c
==============================================================================
--- trunk/libavcodec/rle.c (original)
+++ trunk/libavcodec/rle.c Tue Apr 3 08:46:12 2007
@@ -56,7 +56,7 @@ static int count_pixels(const uint8_t *s
}
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;
Modified: trunk/libavcodec/rle.h
==============================================================================
--- trunk/libavcodec/rle.h (original)
+++ trunk/libavcodec/rle.h Tue Apr 3 08:46:12 2007
@@ -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 */
More information about the ffmpeg-cvslog
mailing list