-
-
Notifications
You must be signed in to change notification settings - Fork 673
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5007 from blowekamp/openjpeg_update_2.5.2
OpenJPEG update 2.5.2 - Add JPH read support.
- Loading branch information
Showing
118 changed files
with
50,137 additions
and
28,807 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
src/openjpeg/src/lib/openjp2/j2k.c hooks-max-size=500000 |
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 |
---|---|---|
@@ -0,0 +1,36 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -e | ||
set -x | ||
shopt -s dotglob | ||
|
||
readonly name="openjpeg" | ||
readonly ownership="OpenJPEG Upstream <[email protected]>" | ||
readonly subtree="Modules/ThirdParty/OpenJPEG/src/$name" | ||
readonly repo="https://github.com/uclouvain/openjpeg.git" | ||
readonly tag="v2.5.2" | ||
readonly paths=" | ||
CMakeLists.txt | ||
README.md | ||
LICENSE | ||
cmake/EnsureFileInclude.cmake | ||
cmake/TestLargeFiles.cmake | ||
src/lib/CMakeLists.txt | ||
src/lib/openjp2/CMakeLists.txt | ||
src/lib/openjp2/*.c | ||
src/lib/openjp2/*.h | ||
src/lib/openjp2/*.cmake.in | ||
" | ||
|
||
extract_source () { | ||
git_archive | ||
pushd "${extractdir}/${name}-reduced" | ||
echo "* -whitespace" >> .gitattributes | ||
echo "" >> src/lib/openjp2/mqc.c | ||
echo "" >> src/lib/openjp2/t1_ht_luts.h | ||
popd | ||
} | ||
|
||
. "${BASH_SOURCE%/*}/../../../Utilities/Maintenance/update-third-party.bash" |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
* -whitespace |
Oops, something went wrong.