Fix garbled thumbnails for grayscale/CMYK JPEG cover art - #14
Open
ElCruncharino wants to merge 1 commit into
Open
Fix garbled thumbnails for grayscale/CMYK JPEG cover art#14ElCruncharino wants to merge 1 commit into
ElCruncharino wants to merge 1 commit into
Conversation
ImageLoaderJPEG::Load() hardcoded a 3-components-per-pixel row layout but never forced libjpeg's output color space, so single-component (grayscale) or 4-component (CMYK) source JPEGs produced a shorter row buffer than the copy loop assumed, reading past its end for most of each row.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
ImageLoaderJPEG::Load() copies each decoded scanline assuming 3 bytes
per pixel, but never forces libjpeg's output color space. A grayscale
(1 component) or CMYK (4 component) source JPEG then produces a row
buffer shorter or longer than the loop assumes, so most of each row
gets read out of bounds. Embedded cover art using either format shows
up as partially garbled noise.
Fix: set cinfo.out_color_space = JCS_RGB before starting decompression,
so libjpeg always hands back a 3-component RGB buffer regardless of
the source's native color space.