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> | 2025-12-02 01:50:24 +0100 |
| commit | c126d3a6c835a0033b0c62a1b3120fca766e2cbf (patch) | |
| tree | be69f00e669659cb59ef36c972522ccc6b04cdfb /fiv-io.c | |
| parent | fd60959d410410cac39c7fbe72a91479547a1447 (diff) | |
| download | fiv-c126d3a6c835a0033b0c62a1b3120fca766e2cbf.tar.gz fiv-c126d3a6c835a0033b0c62a1b3120fca766e2cbf.tar.xz fiv-c126d3a6c835a0033b0c62a1b3120fca766e2cbf.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.
Diffstat (limited to 'fiv-io.c')
| -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; |
