summaryrefslogtreecommitdiff
path: root/source/fitz/document-all.c
diff options
context:
space:
mode:
authorTor Andersson <tor.andersson@artifex.com>2018-04-26 14:43:22 +0200
committerSebastian Rasmussen <sebras@gmail.com>2018-04-27 20:12:31 +0800
commit229761e8b7e8685620cf4c038d848bccd563aa12 (patch)
tree6c4d946d48201d2553fba98af07947546f1e8dc9 /source/fitz/document-all.c
parentbc3cb253d79c03e373631eb7bc53da7a12365656 (diff)
downloadmupdf-229761e8b7e8685620cf4c038d848bccd563aa12.tar.xz
Handle multi-page image formats in muimg document driver.
Remove the mutiff document type.
Diffstat (limited to 'source/fitz/document-all.c')
-rw-r--r--source/fitz/document-all.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/source/fitz/document-all.c b/source/fitz/document-all.c
index 53969e2d..acbbbd42 100644
--- a/source/fitz/document-all.c
+++ b/source/fitz/document-all.c
@@ -5,7 +5,6 @@ extern fz_document_handler xps_document_handler;
extern fz_document_handler svg_document_handler;
extern fz_document_handler cbz_document_handler;
extern fz_document_handler img_document_handler;
-extern fz_document_handler tiff_document_handler;
extern fz_document_handler html_document_handler;
extern fz_document_handler epub_document_handler;
extern fz_document_handler gprf_document_handler;
@@ -27,9 +26,6 @@ void fz_register_document_handlers(fz_context *ctx)
#if FZ_ENABLE_IMG
fz_register_document_handler(ctx, &img_document_handler);
#endif /* FZ_ENABLE_IMG */
-#if FZ_ENABLE_TIFF
- fz_register_document_handler(ctx, &tiff_document_handler);
-#endif /* FZ_ENABLE_TIFF */
#if FZ_ENABLE_HTML
fz_register_document_handler(ctx, &html_document_handler);
#endif /* FZ_ENABLE_HTML */