mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
dont use *int8_t for the arguments (ive missed that in the patches ...)
Originally committed as revision 8603 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
b25514a43f
commit
eb6905f064
@ -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,
|
||||
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;
|
||||
|
@ -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 */
|
||||
|
Loading…
Reference in New Issue
Block a user