From 156c683d72bb83cabe8897fa6ae98b4d4270fe9a Mon Sep 17 00:00:00 2001 From: Sebastian Rasmussen Date: Sun, 12 Dec 2010 14:51:25 +0000 Subject: Remove unused function in CCITT fax decoding. --- fitz/filt_faxd.c | 21 --------------------- 1 file changed, 21 deletions(-) (limited to 'fitz/filt_faxd.c') diff --git a/fitz/filt_faxd.c b/fitz/filt_faxd.c index fb9b4c52..b1cd3b30 100644 --- a/fitz/filt_faxd.c +++ b/fitz/filt_faxd.c @@ -196,27 +196,6 @@ printline(FILE *f, unsigned char *line, int w) fprintf(f, "\n"); } -static inline int -getrun(const unsigned char *line, int x, int w, int c) -{ - int z; - int b; - - if (x < 0) - x = 0; - - z = x; - while (z < w) - { - b = getbit(line, z); - if (c != b) - break; - z ++; - } - - return z - x; -} - static inline int findchanging(const unsigned char *line, int x, int w) { -- cgit v1.2.3