From f891ec1730f77a01108d95438f83cddb86bca308 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 a405c93..498b155 100644 --- a/fiv-io.c +++ b/fiv-io.c @@ -1898,8 +1898,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