summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRobin Watts <robin.watts@artifex.com>2016-10-10 18:52:18 +0100
committerRobin Watts <robin.watts@artifex.com>2016-10-10 20:01:13 +0100
commite0505043f7d784536a9552ef918d63968f3bd530 (patch)
tree87dd48cf28217103c8261390643c20f98c665161 /include
parentbc9fdb018f48a5c68bb055e21941289f41665a7e (diff)
downloadmupdf-e0505043f7d784536a9552ef918d63968f3bd530.tar.xz
PDF Images: Add a flag for if we need to apply the decode array
This avoids us having to check the entire array each time, and makes the next commit simpler.
Diffstat (limited to 'include')
-rw-r--r--include/mupdf/fitz/image.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/mupdf/fitz/image.h b/include/mupdf/fitz/image.h
index cc521904..77f3488b 100644
--- a/include/mupdf/fitz/image.h
+++ b/include/mupdf/fitz/image.h
@@ -95,6 +95,7 @@ struct fz_image_s
unsigned int imagemask:1;
unsigned int interpolate:1;
unsigned int use_colorkey:1;
+ unsigned int use_decode:1;
unsigned int invert_cmyk_jpeg:1;
unsigned int decoded:1;
unsigned int scalable:1;