forked from hexagon-geo-surv/qtbase
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update bundled libjpeg-turbo to version 2.1.4
[ChangeLog][Third-Party Code] libjpeg-turbo was updated to version 2.1.4 Pick-to: 6.4 6.2 5.15 Change-Id: Iaffb12606ec53c3ee217b51ad20663aa4409eafa Reviewed-by: Kai Koehne <[email protected]>
- Loading branch information
Showing
9 changed files
with
75 additions
and
16 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
* Copyright (C) 1994-1997, Thomas G. Lane. | ||
* libjpeg-turbo Modifications: | ||
* Copyright 2009 Pierre Ossman <[email protected]> for Cendio AB | ||
* Copyright (C) 2010, 2015-2016, 2019-2020, D. R. Commander. | ||
* Copyright (C) 2010, 2015-2016, 2019-2020, 2022, D. R. Commander. | ||
* Copyright (C) 2015, 2020, Google, Inc. | ||
* For conditions of distribution and use, see the accompanying README.ijg | ||
* file. | ||
|
@@ -475,7 +475,7 @@ decompress_smooth_data(j_decompress_ptr cinfo, JSAMPIMAGE output_buf) | |
if (!compptr->component_needed) | ||
continue; | ||
/* Count non-dummy DCT block rows in this iMCU row. */ | ||
if (cinfo->output_iMCU_row < last_iMCU_row - 1) { | ||
if (cinfo->output_iMCU_row + 1 < last_iMCU_row) { | ||
block_rows = compptr->v_samp_factor; | ||
access_rows = block_rows * 3; /* this and next two iMCU rows */ | ||
} else if (cinfo->output_iMCU_row < last_iMCU_row) { | ||
|
@@ -560,7 +560,7 @@ decompress_smooth_data(j_decompress_ptr cinfo, JSAMPIMAGE output_buf) | |
next_block_row = buffer_ptr; | ||
|
||
if (block_row < block_rows - 2 || | ||
cinfo->output_iMCU_row < last_iMCU_row - 1) | ||
cinfo->output_iMCU_row + 1 < last_iMCU_row) | ||
next_next_block_row = | ||
buffer[block_row + 2] + cinfo->master->first_MCU_col[ci]; | ||
else | ||
|
This file contains 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
This file contains 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
This file contains 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