git » fp-git.git » commit 36be3c1

added a better description

author ecalot
2006-02-08 15:25:33 UTC
committer ecalot
2006-02-08 15:25:33 UTC
parent f19748882c4e2db66aea91143db9e11fe2375626

added a better description

PR/src/lib/compression/rlev_decompress.c +7 -6

diff --git a/PR/src/lib/compression/rlev_decompress.c b/PR/src/lib/compression/rlev_decompress.c
index a3449f7..f05f79f 100644
--- a/PR/src/lib/compression/rlev_decompress.c
+++ b/PR/src/lib/compression/rlev_decompress.c
@@ -19,8 +19,9 @@
 */
 
 /*
-rlec_uncompress.c: Princed Resources : Image Compression Library
-\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf
+rlec_uncompress.c: Princed Resources : Image Compression Library :
+\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf  Run length encoding with checksum decompressor
+
  Copyright 2003, 2004 Princed Development Team
   Created: 24 Aug 2003
 
@@ -37,9 +38,9 @@ rlec_uncompress.c: Princed Resources : Image Compression Library
 #include "compress.h"
 
 /* Expands RLE algorithm */
-int expandRlev(const unsigned char* input, int inputSize,
+int expandRleC(const unsigned char* input, int inputSize,
                unsigned char** output, int *outputSize,int verif) {
-	register unsigned char rep=1;
+	register unsigned char rep;
 	int oCursor=0;
 	int iCursor=0;
 	int done=0;
@@ -52,8 +53,8 @@ int expandRlev(const unsigned char* input, int inputSize,
 	/* main loop */
 	while (iCursor<inputSize) {
 		rep=(input[iCursor++]);
-
-		if ((oCursor>=28800)||(done)||(oCursor%verif)) {
+printf("o=%d i=%d\n",oCursor,iCursor);
+		if ((oCursor==28800)||(done)||(oCursor%verif)) {
 			done=0;
 			if (rep&0x80) { /* repeat */
 				//rep&=~0x80;