+int shuff_decode_file(char *inputfile, char *outputfile)
+{
+ SHUFFNODE *inputlist;
+ SHUFFNODE *codetree,*currnode;
+ t_freq *ftable = (t_freq*)malloc(sizeof(t_freq)*256);
+ unsigned long int bytesleft,codebuffer;
+ VFILE *fpsource;
+ FILE *fpdest;
+ unsigned short int decoded_symbol;
+ int bitsleft,freqcount = 0;
+
+ /* Levanto cuantos bytes decodeo y la freq table */
+ if ((fpsource = vfopen(inputfile,"r",0)) == NULL) return 0;
+ if ((fpdest = fopen(outputfile,"w")) == NULL) return 0;
+ vfread(&bytesleft,sizeof(unsigned long int),1,fpsource);
+ vfread(ftable,sizeof(unsigned long int),256,fpsource);
+ inputlist = shuff_buildlist(ftable, &freqcount);
+ codetree = shuff_buildtree(inputlist,freqcount);
+ currnode = codetree;
+
+ while (!feof(fpsource->fp) && (bytesleft > 0)) {
+
+ /* Leo un buffer de 32 bits */
+ if (vfread(&codebuffer,sizeof(unsigned long int),1,fpsource) != 1) continue;
+ bitsleft = sizeof(unsigned long int) * 8;
+
+ /* Proceso el buffer sacando simbolos hasta que se me agote */
+ while ((bitsleft > 0) && (bytesleft > 0)) {
+ currnode = shuff_decode_symbols(currnode,codebuffer,&bitsleft,&decoded_symbol);
+ /* Si obtuve un symbolo valido lo emito*/
+ if (decoded_symbol != 256) {
+ fputc(decoded_symbol,fpdest);
+ currnode = codetree;
+ --bytesleft;
+ }
+ }
+ }
+
+ vfclose(fpsource);
+ fclose(fpdest);
+
+ /* Free up memory baby yeah */
+ free(ftable);
+ free(inputlist);
+
+ return 1;