Thu, 20 Feb 2003 12:11:35 +0000
only need a single table for run length encoding now.
bitblt_table_gen.c | file | annotate | diff | revisions |
1.1 --- a/bitblt_table_gen.c Thu Feb 20 12:11:06 2003 +0000 1.2 +++ b/bitblt_table_gen.c Thu Feb 20 12:11:35 2003 +0000 1.3 @@ -4,7 +4,7 @@ 1.4 * will be compressed using ITU-T T.6 (G4) fax encoding. 1.5 * 1.6 * bitblt table generator 1.7 - * $Id: bitblt_table_gen.c,v 1.2 2003/02/19 02:34:35 eric Exp $ 1.8 + * $Id: bitblt_table_gen.c,v 1.3 2003/02/20 04:11:35 eric Exp $ 1.9 * Copyright 2001, 2002, 2003 Eric Smith <eric@brouhaha.com> 1.10 * 1.11 * This program is free software; you can redistribute it and/or modify 1.12 @@ -111,9 +111,7 @@ 1.13 gen_bit_reverse_table (); 1.14 printf ("\n"); 1.15 1.16 - gen_run_length_table (0, "white_rle_tab"); 1.17 - printf ("\n"); 1.18 - gen_run_length_table (1, "black_rle_tab"); 1.19 + gen_run_length_table (0, "rle_tab"); 1.20 printf ("\n"); 1.21 1.22 return (0);