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> | 2026-03-29 23:13:10 +0200 |
| commit | 4c4befd992cb0b0d380c0ffe52379d4e819fcfb4 (patch) | |
| tree | 92c488241e1932f055736362d62ab61fc424c5fd | |
| parent | df648192a801657b3adf1f2d59937677b8dd4391 (diff) | |
| download | fiv-4c4befd992cb0b0d380c0ffe52379d4e819fcfb4.tar.gz fiv-4c4befd992cb0b0d380c0ffe52379d4e819fcfb4.tar.xz fiv-4c4befd992cb0b0d380c0ffe52379d4e819fcfb4.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; |
