diff options
author | Robin Watts <robin.watts@artifex.com> | 2014-01-01 12:59:08 +0000 |
---|---|---|
committer | Robin Watts <robin.watts@artifex.com> | 2014-01-02 20:04:37 +0000 |
commit | cf9a5e5e7af55d15a83f542041fc63c73ba57425 (patch) | |
tree | 52ffe3fee581258d59d4f72f6d719387832591cc /include | |
parent | 8dee8f716887aee52e2fba19a7ae0e2a443cb6df (diff) | |
download | mupdf-cf9a5e5e7af55d15a83f542041fc63c73ba57425.tar.xz |
Cull code unused as a result of the "tolerate inline images..." fix.
Remove code that's not used any more as a result of the previous
fix, plus some code that was unused anyway.
Diffstat (limited to 'include')
-rw-r--r-- | include/mupdf/fitz/image.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mupdf/fitz/image.h b/include/mupdf/fitz/image.h index 7ba62f8a..216f98cf 100644 --- a/include/mupdf/fitz/image.h +++ b/include/mupdf/fitz/image.h @@ -58,7 +58,7 @@ fz_image *fz_new_image_from_data(fz_context *ctx, unsigned char *data, int len); fz_image *fz_new_image_from_buffer(fz_context *ctx, fz_buffer *buffer); fz_pixmap *fz_image_get_pixmap(fz_context *ctx, fz_image *image, int w, int h); void fz_free_image(fz_context *ctx, fz_storable *image); -fz_pixmap *fz_decomp_image_from_stream(fz_context *ctx, fz_stream *stm, fz_image *image, int in_line, int indexed, int l2factor, int native_l2factor); +fz_pixmap *fz_decomp_image_from_stream(fz_context *ctx, fz_stream *stm, fz_image *image, int indexed, int l2factor, int native_l2factor); fz_pixmap *fz_expand_indexed_pixmap(fz_context *ctx, fz_pixmap *src); struct fz_image_s |