diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2004-03-03 20:00:38 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2004-03-03 20:00:38 +0000 |
commit | 6ffb59a745a36b7884e6305c7420e57d87dd894d (patch) | |
tree | c2b5908473602a9fb7835fdc68a3a90f104aa5ee | |
parent | b5ff783083547d2fb13f7a5a2cc0ecad41c21e8c (diff) | |
download | xine-lib-6ffb59a745a36b7884e6305c7420e57d87dd894d.tar.gz xine-lib-6ffb59a745a36b7884e6305c7420e57d87dd894d.tar.bz2 |
fix compiler warning
CVS patchset: 6210
CVS date: 2004/03/03 20:00:38
-rw-r--r-- | src/libxinevdec/bitplane.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/libxinevdec/bitplane.c b/src/libxinevdec/bitplane.c index 681219289..a71b8f3ed 100644 --- a/src/libxinevdec/bitplane.c +++ b/src/libxinevdec/bitplane.c @@ -22,7 +22,7 @@ * suitable for display under xine. It's based on the rgb-decoder * and the development documentation from the Amiga Developer CD * - * $Id: bitplane.c,v 1.7 2004/02/29 19:22:42 manfredtremmel Exp $ + * $Id: bitplane.c,v 1.8 2004/03/03 20:00:38 mroi Exp $ */ #include <stdio.h> @@ -395,6 +395,8 @@ static void bitplane_decode_ham (uint8_t *ham_buffer, } } +/* this function is currently unused */ +#if 0 /* decoding method 4 */ static void bitplane_set_dlta_short (uint8_t *current_buffer, uint8_t *index_buf, @@ -452,6 +454,7 @@ static void bitplane_set_dlta_short (uint8_t *current_buffer, } bitplane_decode_bitplane(current_buffer, index_buf, width, height, num_bitplanes, 1); } +#endif /* decoding method 5 */ static void bitplane_dlta_5 (bitplane_decoder_t *this) { |