Commit fe347a1c authored by michael's avatar michael

cosmetic


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@8601 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 6ecca14e
...@@ -58,9 +58,7 @@ static int count_pixels(const uint8_t *start, int len, int bpp, int same) ...@@ -58,9 +58,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, uint8_t xor) int ff_rle_encode(uint8_t *outbuf, int out_size, const uint8_t *ptr , int bpp, int w, int8_t add, uint8_t xor)
{ {
int count, x; int count, x;
uint8_t *out; uint8_t *out = outbuf;
out = outbuf;
for(x = 0; x < w; x += count) { for(x = 0; x < w; x += count) {
/* see if we can encode the next set of pixels with RLE */ /* see if we can encode the next set of pixels with RLE */
......
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