diff options
author | Sebastian Rasmussen <sebras@hotmail.com> | 2010-12-12 14:51:25 +0000 |
---|---|---|
committer | Sebastian Rasmussen <sebras@hotmail.com> | 2010-12-12 14:51:25 +0000 |
commit | 156c683d72bb83cabe8897fa6ae98b4d4270fe9a (patch) | |
tree | 3328fa006776bffe6c5b0cddbcb74d1011379a64 | |
parent | af3b2666c907a56a584db4be581fcb8b56a6c636 (diff) | |
download | mupdf-156c683d72bb83cabe8897fa6ae98b4d4270fe9a.tar.xz |
Remove unused function in CCITT fax decoding.
-rw-r--r-- | fitz/filt_faxd.c | 21 |
1 files changed, 0 insertions, 21 deletions
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 @@ -197,27 +197,6 @@ printline(FILE *f, unsigned char *line, int w) } 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) { int a, b; |