| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2016-01-25 | processed all c/h files through astyle with opj_astyle.cfgcodingstyle | Antonin Descampe | |
| 2016-01-25 | Merge branch 'master' into codingstyle | Antonin Descampe | |
| 2016-01-25 | fixed tile numbering | Antonin Descampe | |
| Fixes #245 | |||
| 2016-01-25 | modified astyle config | Antonin Descampe | |
| 2016-01-24 | modified style cfg | Antonin Descampe | |
| 2016-01-24 | adding astyle and uncrustify config files | Antonin Descampe | |
| 2016-01-23 | Merge pull request #648 from stweil/alloc | Antonin Descampe | |
| Fix support of posix_memalloc for Linux | |||
| 2016-01-11 | Update known failures | mayeut | |
| 2016-01-11 | Merge pull request #551 from mayeut/coc-qcc | Matthieu Darbois | |
| Add COC/QCC in main header when needed | |||
| 2016-01-09 | Merge pull request #690 from rouault/failed_malloc_opj_dwt_encode_procedure | Mathieu Malaterre | |
| [git/2.1 regression] Fix opj_write_tile() failure when numresolutions=1 | |||
| 2016-01-09 | Add comment explaining bj is not use when l_data_size == 0 | Even Rouault | |
| 2016-01-08 | [git/2.1 regression] Fix opj_write_tile() failure when numresolutions=1 | Even Rouault | |
| When trying the GDAL OpenJPEG driver against openjpeg current master HEAD, I get failures when trying to create .jp2 files. The driver uses opj_write_tile() and in some tests numresolutions = 1. In openjp2/dwt.c:410, l_data_size = opj_dwt_max_resolution( tilec->resolutions,tilec->numresolutions) * (OPJ_UINT32)sizeof(OPJ_INT32); is called and returns l_data_size = 0. Now in git opj_malloc() has a special case for 0 to return a NULL pointer whereas previously it relied on system malloc(), which in my case didn't return NULL. So only test the pointer value if l_data_size != 0. This makes the GDAL autotest suite to pass again. | |||
| 2016-01-06 | Merge pull request #687 from stweil/memalign | Matthieu Darbois | |
| Fix fatal crash on 64 bit Linux | |||
| 2016-01-06 | Fix fatal crash on 64 bit Linux | Stefan Weil | |
| By default, OpenJPEG uses the function memalign to allocate aligned memory on Linux systems. That function needs malloc.h which was missing. This results in a compiler warning: openjpeg/src/lib/openjp2/opj_malloc.c:63:3: warning: implicit declaration of function ‘memalign’ [-Wimplicit-function-declaration] On hosts where sizeof(int) < sizeof(void *) the return value of memalign will be truncated which results in an invalid pointer. That caused "make test" to produce lots of segmentation faults when running on a 64 bit Linux host. Signed-off-by: Stefan Weil <sw@weilnetz.de> | |||
| 2016-01-06 | Fix whitespace issues in opj_malloc.c | Stefan Weil | |
| Some lines ended with spaces. Remove them. Signed-off-by: Stefan Weil <sw@weilnetz.de> | |||
| 2016-01-06 | Fix support of posix_memalign for Linux | Stefan Weil | |
| posix_memalign is only declared conditionally in stdlib.h, so add one of the possible definitions to get the declaration. Signed-off-by: Stefan Weil <sw@weilnetz.de> | |||
| 2016-01-06 | Merge pull request #686 from mayeut/master | Matthieu Darbois | |
| [libtiff] Add missing include statement for ssize_t Close #681 | |||
| 2016-01-06 | Add missing include statement for ssize_t | mayeut | |
| Update uclouvain/openjpeg#681 | |||
| 2016-01-06 | Merge remote-tracking branch 'uclouvain/master' | mayeut | |
| 2016-01-06 | Merge pull request #684 from stweil/typo | Matthieu Darbois | |
| Fix duplicate article in comments | |||
| 2016-01-06 | Fix duplicate article in comments | Stefan Weil | |
| Signed-off-by: Stefan Weil <sw@weilnetz.de> | |||
| 2016-01-03 | Merge remote-tracking branch 'uclouvain/master' | mayeut | |
| 2015-12-31 | Merge pull request #679 from stweil/grammar | Matthieu Darbois | |
| Fix grammar in comment | |||
| 2015-12-31 | Fix grammar in comment | Stefan Weil | |
| Signed-off-by: Stefan Weil <sw@weilnetz.de> | |||
| 2015-12-23 | Merge pull request #665 from jwilk/spelling | Matthieu Darbois | |
| Fix typos | |||
| 2015-11-27 | Fix typos | Jakub Wilk | |
| 2015-11-07 | Add known failures | mayeut | |
| 2 more tests failing under AppVayor since nov-6 update Update #655 | |||
| 2015-11-07 | Merge pull request #654 from mayeut/master | Matthieu Darbois | |
| Fix undefined size jp2 box handling | |||
| 2015-11-07 | Revert "Check for appveyor update" | mayeut | |
| This reverts commit c414d9c238f404980e6e8b17db652a7fb2635cdf. | |||
| 2015-11-07 | Check for appveyor update | mayeut | |
| 2015-11-07 | Fix missing bracket | mayeut | |
| 2015-11-07 | fix appveyor build | mayeut | |
| 2015-11-07 | Fix undefined size jp2 box handling | mayeut | |
| Update #653 | |||
| 2015-11-02 | Fix Travis cmake install | mayeut | |
| 2015-11-02 | Update cmake for travis ASan build | mayeut | |
| 2015-11-02 | Merge pull request #651 from stweil/fix | Matthieu Darbois | |
| opj_decompress: Update error message | |||
| 2015-11-01 | opj_decompress: Update error message | Stefan Weil | |
| 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> | |||
| 2015-11-01 | Fin compiler warnings | mayeut | |
| 2015-11-01 | Fix compiler warnings | mayeut | |
| 2015-11-01 | convert: Fix compiler warnings | Stefan Weil | |
| 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> | |||
| 2015-11-01 | convert: Remove unneeded type casts | Stefan Weil | |
| Signed-off-by: Stefan Weil <sw@weilnetz.de> | |||
| 2015-10-30 | Merge pull request #647 from stweil/master | Matthieu Darbois | |
| Fix typo in comments | |||
| 2015-10-29 | Fix typo in comments | Stefan Weil | |
| Signed-off-by: Stefan Weil <sw@weilnetz.de> | |||
| 2015-10-21 | Merge pull request #638 from stweil/master | Matthieu Darbois | |
| Fix format strings and unneeded assignment | |||
| 2015-10-21 | Merge branch 'master' into coc-qcc | mayeut | |
| 2015-10-21 | Merge pull request #644 from smuehlst/opj_aligned_malloc | Matthieu Darbois | |
| Avoid pointer arithmetic with (void *) pointers | |||
| 2015-10-21 | Avoid pointer arithmetic with (void *) pointers. | Stephan Mühlstrasser | |
| 2015-10-21 | Merge branch 'master' into opj_aligned_malloc | Stephan Mühlstrasser | |
| Conflicts: src/lib/openjp2/opj_malloc.c | |||
| 2015-10-21 | Generic aligned malloc implementation update. | mayeut | |
| Update #642 | |||
| 2015-10-20 | Generic aligned malloc implementation. | Stephan Mühlstrasser | |
| Used for platforms where none of posix_memalign(), memalign() and _aligned_malloc() is available. | |||
