diff options
author | Přemysl Eric Janouch <p@janouch.name> | 2023-06-25 02:20:34 +0200 |
---|---|---|
committer | Přemysl Eric Janouch <p@janouch.name> | 2024-12-20 09:48:20 +0100 |
commit | 80dba039cefea1c24b10e24eacbb55f3af72466f (patch) | |
tree | 0742477419169492c39fda23629b8f001a0e4ec8 | |
parent | ed3225250b5bb5990b498a98938d0dbd28db2c6d (diff) | |
download | fiv-80dba039cefea1c24b10e24eacbb55f3af72466f.tar.gz fiv-80dba039cefea1c24b10e24eacbb55f3af72466f.tar.xz fiv-80dba039cefea1c24b10e24eacbb55f3af72466f.zip |
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.
-rw-r--r-- | fiv-io.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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; |