From 617749754a2fc4ee73f8d5e3de4bc7305267d36a Mon Sep 17 00:00:00 2001 From: Ricardo Markiewicz Date: Fri, 25 Jun 2004 04:02:39 +0000 Subject: [PATCH] VIOLA !!!! ... ahora si anda !!! Eran los putos bits nomas !! --- src/jacu.c | 26 +++++++++++++------------- src/mtf/mtf.c | 16 ++++++++-------- src/mtf/mtf.h | 6 +++--- 3 files changed, 24 insertions(+), 24 deletions(-) diff --git a/src/jacu.c b/src/jacu.c index 5add536..089bc79 100644 --- a/src/jacu.c +++ b/src/jacu.c @@ -99,9 +99,9 @@ int main(int argc, char* argv[]) /* Comprimo */ FILE *fp; Uint32 i, j, total, k; - char *mtf; - char *salida, *data; - char *z; + unsigned char *mtf; + unsigned char *salida, *data; + unsigned char *z; int z_len; /* Preparo el compresor huffman */ @@ -109,8 +109,8 @@ int main(int argc, char* argv[]) if (mflag == 1) shuff_loadmodel(shuff,staticmodel); /* Preparo el BS alocando mem para el K, el Block y su Size */ - data = malloc(sizeof(char)*pagesize); - salida = malloc(sizeof(char)*pagesize+sizeof(Uint32)*2); + data = malloc(sizeof(unsigned char)*pagesize); + salida = malloc(sizeof(unsigned char)*pagesize+sizeof(Uint32)*2); bs = bs_create(pagesize); /* Abrimos el archivo a comprimir y encodeamos bloques */ @@ -195,10 +195,10 @@ int main(int argc, char* argv[]) if (dflag == 1) { /* Descomprimo */ FILE *fp_out; - FILE *fp_in; + /*FILE *fp_in;*/ Uint32 block_size, k; - char *block, *mtf, *orig; - char *z; + unsigned char *block, *mtf, *orig; + unsigned char *z; int z_len,moredata = 0,decoded = 0; /* Inicializo el descompresor */ @@ -213,7 +213,7 @@ int main(int argc, char* argv[]) moredata = shuff_decode_chunk(shuff,(char*)&block_size,sizeof(Uint32),&decoded); if (block_size > 0) { moredata = shuff_decode_chunk(shuff,(char*)&z_len,sizeof(int),&decoded); - z = malloc(sizeof(char)*z_len); + z = malloc(sizeof(unsigned char)*z_len); moredata = shuff_decode_chunk(shuff,z,z_len,&decoded); /*printf("MTF Z (len=%d) = [", z_len); @@ -225,8 +225,8 @@ int main(int argc, char* argv[]) }*/ - block = malloc(block_size*sizeof(char)+sizeof(Uint32)); - orig = malloc(block_size*sizeof(char)); + block = malloc(block_size*sizeof(unsigned char)+sizeof(Uint32)); + orig = malloc(block_size*sizeof(unsigned char)); moredata = shuff_decode_chunk(shuff,block,block_size+sizeof(Uint32),&decoded); /*printf("Antes MTF_inv = ["); @@ -237,7 +237,7 @@ int main(int argc, char* argv[]) printf("]\n"); }*/ /* Hago el MTF inverso */ - mtf = jacu_mtf_inv(z, block, block_size*sizeof(char)+sizeof(Uint32)); + mtf = jacu_mtf_inv(z, block, block_size*sizeof(unsigned char)+sizeof(Uint32)); /*printf("Luego de MTF Inv= ["); { @@ -253,7 +253,7 @@ int main(int argc, char* argv[]) /*printf("Restored : k=%ld\n", k);*/ bs_restore(orig, mtf+sizeof(Uint32), k, block_size); - fwrite(orig, block_size, sizeof(char), fp_out); + fwrite(orig, block_size, sizeof(unsigned char), fp_out); free(block); free(orig); free(mtf); diff --git a/src/mtf/mtf.c b/src/mtf/mtf.c index 92088c0..9f394e3 100644 --- a/src/mtf/mtf.c +++ b/src/mtf/mtf.c @@ -16,16 +16,16 @@ void print_z(char *z, int len) fprintf(stderr, "\n"); } -char *jacu_mtf(char *datos, int len, char **_z, int *z_len) +unsigned char *jacu_mtf(unsigned char *datos, int len, unsigned char **_z, int *z_len) { - char *z; - char *pos; + unsigned char *z; + unsigned char *pos; int i, size; - pos = (char *)malloc(len*sizeof(char)); + pos = (unsigned char *)malloc(len*sizeof(unsigned char)); z = jacu_buscar_z(datos, len, &size); - *_z = (char*)malloc(len*sizeof(char)); - memcpy(*_z, z, len*sizeof(char)); + *_z = (unsigned char*)malloc(len*sizeof(unsigned char)); + memcpy(*_z, z, len*sizeof(unsigned char)); for(i=0; i #include -char *jacu_mtf(char *datos, int len, char **_z, int *z_len); +unsigned char *jacu_mtf(unsigned char *datos, int len, unsigned char **_z, int *z_len); -char *jacu_mtf_inv(char *z, unsigned char *pos, int len); +unsigned char *jacu_mtf_inv(unsigned char *z, unsigned char *pos, int len); -char *jacu_buscar_z(char* datos, int len, int *size); +unsigned char *jacu_buscar_z(unsigned char* datos, int len, int *size); #endif -- 2.43.0