summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRobin Watts <robin.watts@artifex.com>2016-06-14 13:01:57 +0100
committerRobin Watts <robin.watts@artifex.com>2016-06-14 13:06:02 +0100
commit44d65838233baef2c16397847dca3061cde7ec4e (patch)
tree711862be21c83e7a6fd8dbe22ee5329335eadfd9 /include
parent24c55cc6c823a8d6d76ee3c7a41e5832d8031385 (diff)
downloadmupdf-44d65838233baef2c16397847dca3061cde7ec4e.tar.xz
Add TIFF SGI LUV decoding.
Diffstat (limited to 'include')
-rw-r--r--include/mupdf/fitz/filter.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/mupdf/fitz/filter.h b/include/mupdf/fitz/filter.h
index 3d6a21bd..5192540e 100644
--- a/include/mupdf/fitz/filter.h
+++ b/include/mupdf/fitz/filter.h
@@ -30,4 +30,9 @@ fz_stream *fz_open_jbig2d(fz_context *ctx, fz_stream *chain, fz_jbig2_globals *g
fz_jbig2_globals *fz_load_jbig2_globals(fz_context *ctx, fz_buffer *buf);
void fz_drop_jbig2_globals_imp(fz_context *ctx, fz_storable *globals);
+/* Extra filters for tiff */
+fz_stream *fz_open_sgilog16(fz_context *ctx, fz_stream *chain, int w);
+fz_stream *fz_open_sgilog24(fz_context *ctx, fz_stream *chain, int w);
+fz_stream *fz_open_sgilog32(fz_context *ctx, fz_stream *chain, int w);
+
#endif