]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/rle.c
indent
[ffmpeg] / libavcodec / rle.c
index 4f94e7d4b6dc25f3ea4da5d6faf2ad7650468fb9..2fb0d0e4862f6452af0c556e80d6fac69806affc 100644 (file)
@@ -17,7 +17,6 @@
  * You should have received a copy of the GNU Lesser General Public
  * License along with FFmpeg; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- *
  */
 #include "avcodec.h"
 #include "rle.h"
@@ -56,7 +55,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;