openjpeg.git
8 years agofix appveyor build
mayeut [Sat, 7 Nov 2015 01:04:10 +0000 (02:04 +0100)]
fix appveyor build

8 years agoFix undefined size jp2 box handling
mayeut [Sat, 7 Nov 2015 00:35:43 +0000 (01:35 +0100)]
Fix undefined size jp2 box handling

Update #653

8 years agoFix Travis cmake install
mayeut [Mon, 2 Nov 2015 21:28:30 +0000 (22:28 +0100)]
Fix Travis cmake install

8 years agoUpdate cmake for travis ASan build
mayeut [Mon, 2 Nov 2015 21:02:53 +0000 (22:02 +0100)]
Update cmake for travis ASan build

8 years agoMerge pull request #651 from stweil/fix
Matthieu Darbois [Mon, 2 Nov 2015 20:49:25 +0000 (21:49 +0100)]
Merge pull request #651 from stweil/fix

opj_decompress: Update error message

8 years agoopj_decompress: Update error message 651/head
Stefan Weil [Fri, 30 Oct 2015 07:45:10 +0000 (08:45 +0100)]
opj_decompress: Update error message

The png format is also supported, so add it to the message.
Remove also the unneeded blank character before \n.

Signed-off-by: Stefan Weil <sw@weilnetz.de>
8 years agoFin compiler warnings
mayeut [Sun, 1 Nov 2015 16:08:47 +0000 (17:08 +0100)]
Fin compiler warnings

8 years agoFix compiler warnings
mayeut [Sun, 1 Nov 2015 15:56:50 +0000 (16:56 +0100)]
Fix compiler warnings

8 years agoconvert: Fix compiler warnings
Stefan Weil [Thu, 29 Oct 2015 08:35:54 +0000 (09:35 +0100)]
convert: Fix compiler warnings

Fix this and other similar compiler warnings:

src/bin/jp2/convert.c: In function ‘tga_readheader’:
src/bin/jp2/convert.c:595:5: warning:
 dereferencing type-punned pointer will break strict-aliasing rules
 [-Wstrict-aliasing]
     cmap_len = get_ushort(*(unsigned short*)(&tga[5]));

Signed-off-by: Stefan Weil <sw@weilnetz.de>
8 years agoconvert: Remove unneeded type casts
Stefan Weil [Thu, 29 Oct 2015 08:12:03 +0000 (09:12 +0100)]
convert: Remove unneeded type casts

Signed-off-by: Stefan Weil <sw@weilnetz.de>
8 years agoMerge pull request #647 from stweil/master
Matthieu Darbois [Fri, 30 Oct 2015 21:50:06 +0000 (22:50 +0100)]
Merge pull request #647 from stweil/master

Fix typo in comments

8 years agoFix typo in comments 647/head
Stefan Weil [Fri, 23 Oct 2015 19:26:08 +0000 (20:26 +0100)]
Fix typo in comments

Signed-off-by: Stefan Weil <sw@weilnetz.de>
8 years agoMerge pull request #638 from stweil/master
Matthieu Darbois [Wed, 21 Oct 2015 18:53:22 +0000 (20:53 +0200)]
Merge pull request #638 from stweil/master

Fix format strings and unneeded assignment

8 years agoMerge pull request #644 from smuehlst/opj_aligned_malloc
Matthieu Darbois [Wed, 21 Oct 2015 08:10:38 +0000 (10:10 +0200)]
Merge pull request #644 from smuehlst/opj_aligned_malloc

Avoid pointer arithmetic with (void *) pointers

8 years agoAvoid pointer arithmetic with (void *) pointers. 644/head
Stephan Mühlstrasser [Wed, 21 Oct 2015 07:01:31 +0000 (09:01 +0200)]
Avoid pointer arithmetic with (void *) pointers.

8 years agoMerge branch 'master' into opj_aligned_malloc
Stephan Mühlstrasser [Wed, 21 Oct 2015 06:57:45 +0000 (08:57 +0200)]
Merge branch 'master' into opj_aligned_malloc

Conflicts:
src/lib/openjp2/opj_malloc.c

8 years agoGeneric aligned malloc implementation update.
mayeut [Tue, 20 Oct 2015 22:09:04 +0000 (00:09 +0200)]
Generic aligned malloc implementation update.

Update #642

8 years agoGeneric aligned malloc implementation.
Stephan Mühlstrasser [Tue, 20 Oct 2015 11:02:51 +0000 (13:02 +0200)]
Generic aligned malloc implementation.

Used for platforms where none of posix_memalign(), memalign() and
_aligned_malloc() is available.

8 years agoGeneric aligned malloc implementation. 643/head
Stephan Mühlstrasser [Tue, 20 Oct 2015 11:02:51 +0000 (13:02 +0200)]
Generic aligned malloc implementation.

Used for platforms where none of posix_memalign(), memalign() and
_aligned_malloc() is available.

8 years agoMerge pull request #641 from smuehlst/opj_hp_issue_640
Matthieu Darbois [Mon, 19 Oct 2015 20:23:54 +0000 (22:23 +0200)]
Merge pull request #641 from smuehlst/opj_hp_issue_640

Fix HP compiler warning about redeclaration of function
Fix #640
Fix #243

8 years agoFix HP compiler warning about redeclaration of function (#640) 641/head
Stephan Mühlstrasser [Mon, 19 Oct 2015 10:14:01 +0000 (12:14 +0200)]
Fix HP compiler warning about redeclaration of function (#640)

HP compiler warns:
cc: "dwt.c", line 798: warning 562: Redeclaration of "opj_v4dwt_decode"
with a different storage class specifier: "opj_v4dwt_decode" will have
internal linkage.
cc: "t2.c", line 1341: warning 562: Redeclaration of "opj_t2_init_seg"
with a different storage class specifier: "opj_t2_init_seg" will have
internal linkage.

8 years agoFix format strings and unneeded assignment 638/head
Stefan Weil [Sun, 18 Oct 2015 17:49:14 +0000 (19:49 +0200)]
Fix format strings and unneeded assignment

The static code analyzer cppcheck warns about unsigned integers
which use "%d" in the format string.

It also warns about an unneeded assignment.

Fix both issues.

Signed-off-by: Stefan Weil <sw@weilnetz.de>
8 years agoMerge pull request #637 from stweil/fixes
Matthieu Darbois [Sun, 18 Oct 2015 12:42:58 +0000 (14:42 +0200)]
Merge pull request #637 from stweil/fixes

Fix repository for JPEG2000 test data

8 years agoMerge pull request #636 from uclouvain/opj_malloc-625
Matthieu Darbois [Sun, 18 Oct 2015 01:14:55 +0000 (03:14 +0200)]
Merge pull request #636 from uclouvain/opj_malloc-625

Update allocation functions
Fix #625
Fix #624
Fix #635

8 years agoCleanup includes 636/head
mayeut [Sun, 18 Oct 2015 00:52:33 +0000 (02:52 +0200)]
Cleanup includes

8 years agoFix _aligned_malloc usage
mayeut [Sun, 18 Oct 2015 00:23:01 +0000 (02:23 +0200)]
Fix _aligned_malloc usage

8 years agoFix inconsistent behavior of malloc(0)
mayeut [Sat, 17 Oct 2015 00:55:09 +0000 (02:55 +0200)]
Fix inconsistent behavior of malloc(0)

Update #635
Update #625

8 years agoAdd missing checks. Fix crash on failed allocation.
mayeut [Sat, 17 Oct 2015 00:16:17 +0000 (02:16 +0200)]
Add missing checks. Fix crash on failed allocation.

8 years agoFixed crash on encoding
mayeut [Fri, 16 Oct 2015 23:30:23 +0000 (01:30 +0200)]
Fixed crash on encoding

Update #624
Update #625

8 years agoChange link for appveyor
Matthieu Darbois [Thu, 15 Oct 2015 21:31:42 +0000 (23:31 +0200)]
Change link for appveyor

8 years agoMerge pull request #634 from smuehlst/opj_aix_issue_633
Matthieu Darbois [Thu, 15 Oct 2015 11:14:58 +0000 (13:14 +0200)]
Merge pull request #634 from smuehlst/opj_aix_issue_633

Fix  #633.

8 years agoFix OpenJPEG GitHub issue #633. 634/head
Stephan Mühlstrasser [Thu, 15 Oct 2015 08:53:33 +0000 (10:53 +0200)]
Fix OpenJPEG GitHub issue #633.

"opj_includes.h" must be included before system headers, otherwise
inconsistent definitions of configuration macros lead to build
failures on AIX.

8 years agoMerge pull request #632 from mayeut/travis-reduce
Matthieu Darbois [Wed, 14 Oct 2015 23:18:17 +0000 (01:18 +0200)]
Merge pull request #632 from mayeut/travis-reduce

travis-ci: Include add ons in matrix

8 years agotravis-ci: Include add ons in matrix 632/head
mayeut [Wed, 14 Oct 2015 22:58:58 +0000 (00:58 +0200)]
travis-ci: Include add ons in matrix

8 years agoRemove useless environment variables
mayeut [Wed, 14 Oct 2015 22:17:05 +0000 (00:17 +0200)]
Remove useless environment variables

8 years agoAdd ABI check for PR
mayeut [Wed, 14 Oct 2015 20:43:39 +0000 (22:43 +0200)]
Add ABI check for PR

8 years agoUse SPDX full name & identifier for license
Matthieu Darbois [Tue, 13 Oct 2015 21:54:18 +0000 (23:54 +0200)]
Use SPDX full name & identifier for license

8 years agoAdd appveyor status badge & license badge
Matthieu Darbois [Tue, 13 Oct 2015 21:24:10 +0000 (23:24 +0200)]
Add appveyor status badge & license badge

8 years agoCorrect unbound variable
mayeut [Tue, 13 Oct 2015 19:37:11 +0000 (21:37 +0200)]
Correct unbound variable

8 years agoMerge pull request #627 from mayeut/appveyor
Matthieu Darbois [Tue, 13 Oct 2015 19:27:01 +0000 (21:27 +0200)]
Merge pull request #627 from mayeut/appveyor

Add Appveyor

8 years agoRemove the explicit restrict keyword
Mathieu Malaterre [Tue, 13 Oct 2015 19:07:11 +0000 (21:07 +0200)]
Remove the explicit restrict keyword

It would trigger a compiler error on xlc compiler.  Fixes #620

8 years agoI do not recall exactly... I would say that the correct version should be
Giuseppe Baruffa [Tue, 13 Oct 2015 13:20:54 +0000 (15:20 +0200)]
I do not recall exactly... I would say that the correct version should be

if (!JPWL_ASSUME)
    return false;

meaning that once JPWL_ASSUME=1 the code will pass over such errors and try to decode anyway (just paired with the other JPWL_ASSUME on line 1112).

Fixes #596

8 years agoUpdate ci install script 627/head
mayeut [Mon, 12 Oct 2015 19:29:16 +0000 (21:29 +0200)]
Update ci install script

8 years agoRemove a possible uninitialized variable
Mathieu Malaterre [Mon, 12 Oct 2015 19:29:12 +0000 (21:29 +0200)]
Remove a possible uninitialized variable

Fixes #629

8 years agoMinor style fix to remove c++ comments
Mathieu Malaterre [Mon, 12 Oct 2015 19:25:53 +0000 (21:25 +0200)]
Minor style fix to remove c++ comments

8 years agominor tweaks to the code
Mathieu Malaterre [Mon, 12 Oct 2015 19:24:10 +0000 (21:24 +0200)]
minor tweaks to the code

8 years agoAdd appveyor.yml
mayeut [Sun, 11 Oct 2015 15:59:54 +0000 (17:59 +0200)]
Add appveyor.yml

8 years agoAdd exceptions
mayeut [Sun, 11 Oct 2015 15:33:40 +0000 (17:33 +0200)]
Add exceptions

8 years agoFind out Visual Studio version
mayeut [Sun, 11 Oct 2015 15:10:48 +0000 (17:10 +0200)]
Find out Visual Studio version

8 years agoAdd exceptions
mayeut [Sun, 11 Oct 2015 11:47:44 +0000 (13:47 +0200)]
Add exceptions

8 years agoCorrect exceptions
mayeut [Sat, 10 Oct 2015 21:43:50 +0000 (23:43 +0200)]
Correct exceptions

8 years agoFix an issue with parenthesis
Mathieu Malaterre [Sat, 10 Oct 2015 19:03:44 +0000 (21:03 +0200)]
Fix an issue with parenthesis

8 years agoAdd exceptions
mayeut [Sat, 10 Oct 2015 18:01:03 +0000 (20:01 +0200)]
Add exceptions

8 years agoCorrect script
mayeut [Sat, 10 Oct 2015 17:29:53 +0000 (19:29 +0200)]
Correct script

8 years agoUpdate kdu copy
mayeut [Sat, 10 Oct 2015 17:26:42 +0000 (19:26 +0200)]
Update kdu copy

8 years agoRe-enable cloning data
mayeut [Sat, 10 Oct 2015 17:20:50 +0000 (19:20 +0200)]
Re-enable cloning data

8 years agoupdate script
mayeut [Sat, 10 Oct 2015 17:15:52 +0000 (19:15 +0200)]
update script

8 years agocorrect kdu copy
mayeut [Sat, 10 Oct 2015 17:02:35 +0000 (19:02 +0200)]
correct kdu copy

8 years agokdb copy
mayeut [Sat, 10 Oct 2015 16:58:26 +0000 (18:58 +0200)]
kdb copy

8 years agocorrect OPJ_SITE
mayeut [Sat, 10 Oct 2015 16:45:58 +0000 (18:45 +0200)]
correct OPJ_SITE

8 years agorun with appveyor
mayeut [Sat, 10 Oct 2015 16:39:59 +0000 (18:39 +0200)]
run with appveyor

8 years agoAdd paranoid sentinels
Mathieu Malaterre [Sat, 10 Oct 2015 16:38:08 +0000 (18:38 +0200)]
Add paranoid sentinels

8 years agoexport updated path
mayeut [Sat, 10 Oct 2015 16:34:21 +0000 (18:34 +0200)]
export updated path

8 years agodebug appveyor
mayeut [Sat, 10 Oct 2015 16:29:37 +0000 (18:29 +0200)]
debug appveyor

8 years agocorrect warnings
mayeut [Sat, 10 Oct 2015 16:24:57 +0000 (18:24 +0200)]
correct warnings

8 years agoexport TRAVIS_OS_NAME
mayeut [Sat, 10 Oct 2015 16:21:42 +0000 (18:21 +0200)]
export TRAVIS_OS_NAME

8 years agoverbose
mayeut [Sat, 10 Oct 2015 16:19:09 +0000 (18:19 +0200)]
verbose

8 years agoUse make under windows
mayeut [Sat, 10 Oct 2015 16:15:28 +0000 (18:15 +0200)]
Use make under windows

8 years agodebug appveyor
mayeut [Sat, 10 Oct 2015 16:01:43 +0000 (18:01 +0200)]
debug appveyor

8 years agoimplement a portable aligned realloc
Mathieu Malaterre [Sat, 10 Oct 2015 15:51:29 +0000 (17:51 +0200)]
implement a portable aligned realloc

8 years agoremove cygwin specifics
mayeut [Sat, 10 Oct 2015 15:51:13 +0000 (17:51 +0200)]
remove cygwin specifics

8 years agoDebug build
mayeut [Sat, 10 Oct 2015 15:31:04 +0000 (17:31 +0200)]
Debug build

8 years agoCorrect make script
mayeut [Sat, 10 Oct 2015 15:27:49 +0000 (17:27 +0200)]
Correct make script

8 years agoAdd OPJ_BINARY_DIR
mayeut [Sat, 10 Oct 2015 15:25:50 +0000 (17:25 +0200)]
Add OPJ_BINARY_DIR

8 years agoCorrect source path
mayeut [Sat, 10 Oct 2015 15:16:25 +0000 (17:16 +0200)]
Correct source path

8 years agoget proper path
mayeut [Sat, 10 Oct 2015 15:12:05 +0000 (17:12 +0200)]
get proper path

8 years agoChange OS guessing
mayeut [Sat, 10 Oct 2015 15:05:11 +0000 (17:05 +0200)]
Change OS guessing

8 years agochange os guessing
mayeut [Sat, 10 Oct 2015 14:50:30 +0000 (16:50 +0200)]
change os guessing

8 years agoRun under appveyor
mayeut [Sat, 10 Oct 2015 14:44:07 +0000 (16:44 +0200)]
Run under appveyor

8 years agojpylyzer download
mayeut [Sat, 10 Oct 2015 13:18:12 +0000 (15:18 +0200)]
jpylyzer download

8 years agoDebug wget jpylyzer
mayeut [Sat, 10 Oct 2015 13:14:16 +0000 (15:14 +0200)]
Debug wget jpylyzer

8 years agoContinue debugging wget jpylyzer
mayeut [Sat, 10 Oct 2015 13:08:25 +0000 (15:08 +0200)]
Continue debugging wget jpylyzer

8 years agoDebug wget jpylyzer on appveyor
mayeut [Sat, 10 Oct 2015 12:57:25 +0000 (14:57 +0200)]
Debug wget jpylyzer on appveyor

8 years agodo not use aligned_alloc since it requires c11
Mathieu Malaterre [Sat, 10 Oct 2015 12:54:21 +0000 (14:54 +0200)]
do not use aligned_alloc since it requires c11

8 years agoDownload jpylyzer for windows
mayeut [Sat, 10 Oct 2015 12:51:30 +0000 (14:51 +0200)]
Download jpylyzer for windows

8 years agowhich provided by git, try wget
mayeut [Sat, 10 Oct 2015 12:30:15 +0000 (14:30 +0200)]
which provided by git, try wget

8 years agoAdd appveyor support
mayeut [Sat, 10 Oct 2015 12:19:57 +0000 (14:19 +0200)]
Add appveyor support

8 years agoDisable ABI check. Keep API check. 626/head
mayeut [Fri, 9 Oct 2015 22:23:54 +0000 (00:23 +0200)]
Disable ABI check. Keep API check.

8 years agoUpdate ABI tools
mayeut [Fri, 9 Oct 2015 21:51:54 +0000 (23:51 +0200)]
Update ABI tools

8 years agoUpdate exception list for gcc 4.6.4
mayeut [Fri, 9 Oct 2015 21:19:23 +0000 (23:19 +0200)]
Update exception list for gcc 4.6.4

8 years agoUse matrix
mayeut [Fri, 9 Oct 2015 21:00:06 +0000 (23:00 +0200)]
Use matrix

8 years agoRemove travis debugging
mayeut [Fri, 9 Oct 2015 20:24:51 +0000 (22:24 +0200)]
Remove travis debugging

8 years agodisable output for diff build
mayeut [Fri, 9 Oct 2015 20:23:32 +0000 (22:23 +0200)]
disable output for diff build

8 years agoRevert modification made to check incompatibility
mayeut [Fri, 9 Oct 2015 20:20:16 +0000 (22:20 +0200)]
Revert modification made to check incompatibility

8 years agoMerge branch 'master' into travis-abi
mayeut [Fri, 9 Oct 2015 20:16:37 +0000 (22:16 +0200)]
Merge branch 'master' into travis-abi

8 years agoUse gcc-4.8 for ABI tracker
mayeut [Fri, 9 Oct 2015 20:09:50 +0000 (22:09 +0200)]
Use gcc-4.8 for ABI tracker

8 years agocleanup header file and move to implementation
Mathieu Malaterre [Fri, 9 Oct 2015 20:03:35 +0000 (22:03 +0200)]
cleanup header file and move to implementation

8 years agotravis debugging
mayeut [Fri, 9 Oct 2015 19:52:39 +0000 (21:52 +0200)]
travis debugging

8 years agoretrieve & compile wdiff
mayeut [Fri, 9 Oct 2015 19:48:33 +0000 (21:48 +0200)]
retrieve & compile wdiff

8 years agoABI Check
mayeut [Fri, 9 Oct 2015 19:20:54 +0000 (21:20 +0200)]
ABI Check