-#include "statichuff/statichuff.h"
#include "blocksorting/bs.h"
#include "mtf/mtf.h"
+#include "zerogrouping/zerogrouping.h"
+#include "statichuff/statichuff.h"
#include "vfile/vfile.h"
#include <stdlib.h>
#include <stdio.h>
{
int cflag = 0;
int dflag = 0;
+ int zflag = 0;
int tflag = 0;
int pflag = 0;
long int volumesize = 0;
int ch;
t_BlockSort *bs;
- while ((ch = getopt(argc, argv, "cdt:p:")) != -1) {
+ while ((ch = getopt(argc, argv, "cdzt:p:")) != -1) {
switch (ch) {
case 'c': cflag = 1;
case 'd': dflag = 1;
break;
+ case 'z': zflag = 1;
+ break;
+
case 't': tflag = 1;
volumesize = atol(optarg);
break;
/* Le aplico el MTF, salteo el tamaño del bloque para que no se pierda. */
mtf = jacu_mtf(salida+sizeof(unsigned long int), i+sizeof(unsigned long int));
- for(j=0; j<i; j++)
- fputc(mtf[j], fp_out);
+
+ /* Si me lo piden, aplico ZG. */
+ if (zflag)
+ {
+ size_t len;
+ char buff[2];
+ ZG zg;
+ zg_init(&zg);
+ for (j = 0; j < i; ++j)
+ if ((len = zg_group(&zg, buff, mtf[j]))) fwrite(buff, 1, len, fp_out);
+ }
+ else
+ {
+ for(j=0; j<i; j++)
+ fputc(mtf[j], fp_out);
+ }
free(mtf);
}