From 084c4589745a34de2925abd390389a8e720e6cdf Mon Sep 17 00:00:00 2001 From: Michael R Sweet Date: Fri, 16 Jan 2026 20:21:12 -0500 Subject: [PATCH] Strip out non-working LZW from the 1.6.x branch. --- pdfio-stream.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/pdfio-stream.c b/pdfio-stream.c index 528a3c9..9166dff 100644 --- a/pdfio-stream.c +++ b/pdfio-stream.c @@ -1,7 +1,7 @@ // // PDF stream functions for PDFio. // -// Copyright © 2021-2025 by Michael R Sweet. +// Copyright © 2021-2026 by Michael R Sweet. // // Licensed under Apache License v2.0. See the file "LICENSE" for more // information. @@ -615,11 +615,6 @@ _pdfioStreamOpen(pdfio_obj_t *obj, // I - Object st->remaining -= st->flate.avail_in; } - else if (!strcmp(filter, "LZWDecode")) - { - // LZW compression - st->filter = PDFIO_FILTER_LZW; - } else { // Something else we don't support