X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=libavcodec%2Frle.h;h=a92edf7a26b49329ce6bb851bab2efea4f667d75;hb=2b202900618d82030384d46c8d9c3dbf3fe1d7ed;hp=cb5162497570d14ca2f808901dc9357eecb84d63;hpb=fb40daa7f3b86b66b15973d33f4269461b1e1ffd;p=ffmpeg diff --git a/libavcodec/rle.h b/libavcodec/rle.h index cb516249757..a92edf7a26b 100644 --- a/libavcodec/rle.h +++ b/libavcodec/rle.h @@ -35,8 +35,9 @@ int ff_rle_count_pixels(const uint8_t *start, int len, int bpp, int same); /** - * RLE compress the row, with maximum size of out_size. Value before repeated bytes is (count ^ xor_rep) + add_rep. - * Value before raw bytes is (count ^ xor_raw) + add_raw. + * RLE compress the row, with maximum size of out_size. + * Value before repeated bytes is (count ^ xor_rep) + add_rep. + * Value before raw bytes is (count ^ xor_raw) + add_raw. * @param outbuf Output buffer * @param out_size Maximum output size * @param inbuf Input buffer @@ -44,7 +45,7 @@ int ff_rle_count_pixels(const uint8_t *start, int len, int bpp, int same); * @param w Image width * @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 add_rep, int xor_rep, int add_raw, int xor_raw); +int ff_rle_encode(uint8_t *outbuf, int out_size, const uint8_t *inbuf, int bpp, + int w, int add_rep, int xor_rep, int add_raw, int xor_raw); #endif /* AVCODEC_RLE_H */