1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-07-12 07:30:54 +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:
Michael Niedermayer 2007-04-03 06:46:12 +00:00
parent b25514a43f
commit eb6905f064
2 changed files with 2 additions and 2 deletions

View File

@ -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;

View File

@ -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 */