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