From a5267b2507d0d08fde3394175adec5cf488bad07 Mon Sep 17 00:00:00 2001 From: Eric Smith Date: Thu, 20 Feb 2003 12:11:35 +0000 Subject: [PATCH] only need a single table for run length encoding now. --- bitblt_table_gen.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/bitblt_table_gen.c b/bitblt_table_gen.c index c279d22..993cb43 100644 --- a/bitblt_table_gen.c +++ b/bitblt_table_gen.c @@ -4,7 +4,7 @@ * will be compressed using ITU-T T.6 (G4) fax encoding. * * bitblt table generator - * $Id: bitblt_table_gen.c,v 1.2 2003/02/19 02:34:35 eric Exp $ + * $Id: bitblt_table_gen.c,v 1.3 2003/02/20 04:11:35 eric Exp $ * Copyright 2001, 2002, 2003 Eric Smith * * This program is free software; you can redistribute it and/or modify @@ -111,9 +111,7 @@ int main (int argc, char *argv[]) gen_bit_reverse_table (); printf ("\n"); - gen_run_length_table (0, "white_rle_tab"); - printf ("\n"); - gen_run_length_table (1, "black_rle_tab"); + gen_run_length_table (0, "rle_tab"); printf ("\n"); return (0);