diff options
author | Joseph Heenan <joseph@emobix.co.uk> | 2015-02-25 15:07:53 +0000 |
---|---|---|
committer | Joseph Heenan <joseph@emobix.co.uk> | 2015-02-25 16:06:03 +0000 |
commit | 7afb6a8d8efa894aad5a6dca5b429c367fe6c73e (patch) | |
tree | 304d8e639a046633ff368da2fb08c0c48b447526 /source | |
parent | 95852acd089b4640db273890258089f9ac4972d5 (diff) | |
download | mupdf-7afb6a8d8efa894aad5a6dca5b429c367fe6c73e.tar.xz |
filter-fax.c: remove cf_uncompressed_decode, it's never used
Diffstat (limited to 'source')
-rw-r--r-- | source/fitz/filter-fax.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/source/fitz/filter-fax.c b/source/fitz/filter-fax.c index f0a58160..7a4d7485 100644 --- a/source/fitz/filter-fax.c +++ b/source/fitz/filter-fax.c @@ -152,22 +152,6 @@ static const cfd_node cf_2d_decode[] = { {-1,0},{-1,0},{-1,0},{-1,0},{-1,0},{-1,0},{-1,0},{-1,0},{-3,3} }; -/* Uncompressed decoding table. */ -static const cfd_node cf_uncompressed_decode[] = { - {64,12},{5,6},{4,5},{4,5},{3,4},{3,4},{3,4},{3,4},{2,3},{2,3}, - {2,3},{2,3},{2,3},{2,3},{2,3},{2,3},{1,2},{1,2},{1,2},{1,2},{1,2}, - {1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2}, - {0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1}, - {0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1}, - {0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1}, - {-1,0},{-1,0},{8,6},{9,6},{6,5},{6,5},{7,5},{7,5},{4,4},{4,4}, - {4,4},{4,4},{5,4},{5,4},{5,4},{5,4},{2,3},{2,3},{2,3},{2,3},{2,3}, - {2,3},{2,3},{2,3},{3,3},{3,3},{3,3},{3,3},{3,3},{3,3},{3,3},{3,3}, - {0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2}, - {0,2},{0,2},{0,2},{0,2},{0,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2}, - {1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2} -}; - /* bit magic */ static inline int getbit(const unsigned char *buf, int x) |