Commit a4861326 authored by michael's avatar michael

dont use *int8_t for the arguments (ive missed that in the patches ...)


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@8603 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 0bc137f3
...@@ -56,7 +56,7 @@ static int count_pixels(const uint8_t *start, int len, int bpp, int same) ...@@ -56,7 +56,7 @@ static int count_pixels(const uint8_t *start, int len, int bpp, int same)
} }
int ff_rle_encode(uint8_t *outbuf, int out_size, const uint8_t *ptr , int bpp, int w, 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; int count, x;
uint8_t *out = outbuf; uint8_t *out = outbuf;
......
...@@ -33,6 +33,6 @@ ...@@ -33,6 +33,6 @@
* @return Size of output in bytes, or -1 if larger than out_size * @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, 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 */ #endif /* RLE_H */
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment