diff options
author | phintuka <phintuka> | 2010-05-21 11:55:15 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2010-05-21 11:55:15 +0000 |
commit | bb7f698042cdafb335989d5c2feb6a0b55d243c4 (patch) | |
tree | efc186b0d7c764f9db336d61cea67ca7128ddd48 /tools/rle.h | |
parent | 1d481e1ce8defffe27307f834bc68a759e54f81a (diff) | |
download | xineliboutput-bb7f698042cdafb335989d5c2feb6a0b55d243c4.tar.gz xineliboutput-bb7f698042cdafb335989d5c2feb6a0b55d243c4.tar.bz2 |
int -> uint (avoid comparing signed and unsigned vars).
(Thanks to Winfried Koehler)
Diffstat (limited to 'tools/rle.h')
-rw-r--r-- | tools/rle.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/rle.h b/tools/rle.h index d6900e8f..b4fed0dd 100644 --- a/tools/rle.h +++ b/tools/rle.h @@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: rle.h,v 1.2 2009-02-16 16:14:58 phintuka Exp $ + * $Id: rle.h,v 1.3 2010-05-21 11:55:15 phintuka Exp $ * */ @@ -25,7 +25,7 @@ struct xine_rle_elem_s; struct xine_clut_s; -int rle_compress(struct xine_rle_elem_s **rle_data, const uint8_t *data, uint w, uint h); +uint rle_compress(struct xine_rle_elem_s **rle_data, const uint8_t *data, uint w, uint h); void rle_uncompress_lut8(const struct xine_rle_elem_s *rle_data, uint8_t *data, uint w, uint h); |