summaryrefslogtreecommitdiff
path: root/fitz/filt_faxd.c
diff options
context:
space:
mode:
authorTor Andersson <tor.andersson@artifex.com>2012-05-21 16:15:42 +0200
committerTor Andersson <tor.andersson@artifex.com>2012-05-23 14:21:46 +0200
commitfc3dfd623ec30e912bed9615126e0656406a5b75 (patch)
tree4675eaf4a0f36b613d05c5b8b2c2aa2542972e19 /fitz/filt_faxd.c
parent3ba6e1f523ade2e4cc298ace54211a3596ef7ff1 (diff)
downloadmupdf-fc3dfd623ec30e912bed9615126e0656406a5b75.tar.xz
Make CCITTFax tables static.
Diffstat (limited to 'fitz/filt_faxd.c')
-rw-r--r--fitz/filt_faxd.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/fitz/filt_faxd.c b/fitz/filt_faxd.c
index ada7e87b..febc6a65 100644
--- a/fitz/filt_faxd.c
+++ b/fitz/filt_faxd.c
@@ -57,7 +57,7 @@ enum
};
/* White decoding table. */
-const cfd_node cf_white_decode[] = {
+static const cfd_node cf_white_decode[] = {
{256,12},{272,12},{29,8},{30,8},{45,8},{46,8},{22,7},{22,7},
{23,7},{23,7},{47,8},{48,8},{13,6},{13,6},{13,6},{13,6},{20,7},
{20,7},{33,8},{34,8},{35,8},{36,8},{37,8},{38,8},{19,7},{19,7},
@@ -95,7 +95,7 @@ const cfd_node cf_white_decode[] = {
};
/* Black decoding table. */
-const cfd_node cf_black_decode[] = {
+static const cfd_node cf_black_decode[] = {
{128,12},{160,13},{224,12},{256,12},{10,7},{11,7},{288,12},{12,7},
{9,6},{9,6},{8,6},{8,6},{7,5},{7,5},{7,5},{7,5},{6,4},{6,4},{6,4},
{6,4},{6,4},{6,4},{6,4},{6,4},{5,4},{5,4},{5,4},{5,4},{5,4},{5,4},
@@ -134,7 +134,7 @@ const cfd_node cf_black_decode[] = {
};
/* 2-D decoding table. */
-const cfd_node cf_2d_decode[] = {
+static const cfd_node cf_2d_decode[] = {
{128,11},{144,10},{6,7},{0,7},{5,6},{5,6},{1,6},{1,6},{-4,4},
{-4,4},{-4,4},{-4,4},{-4,4},{-4,4},{-4,4},{-4,4},{-5,3},{-5,3},
{-5,3},{-5,3},{-5,3},{-5,3},{-5,3},{-5,3},{-5,3},{-5,3},{-5,3},
@@ -153,7 +153,7 @@ const cfd_node cf_2d_decode[] = {
};
/* Uncompressed decoding table. */
-const cfd_node cf_uncompressed_decode[] = {
+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},