From ec09091309856a3b00235a9e93dc27a2921c27e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C5=99emysl=20Eric=20Janouch?= Date: Sun, 25 Jun 2023 02:20:34 +0200 Subject: NOPUSH: Avoid JPEG enhancement within the TIFF/EP loader I'm not sure if I want to get rid of it completely like this, it should just load progressively. --- fiv-io.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/fiv-io.c b/fiv-io.c index 24db289..66e6fd3 100644 --- a/fiv-io.c +++ b/fiv-io.c @@ -1903,8 +1903,9 @@ load_tiff_ep( return NULL; } - FivIoImage *image = open_libjpeg_turbo( - (const char *) out.jpeg, out.jpeg_length, ctx, error); + // Ignore ctx->enhance explicitly, for when we don't have LibRaw at all. + FivIoImage *image = load_libjpeg_turbo((const char *) out.jpeg, + out.jpeg_length, ctx, load_libjpeg_simple, error); if (!image) return NULL; -- cgit v1.2.3