| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 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 duplicate article in comments | Stefan Weil | |
| Signed-off-by: Stefan Weil <sw@weilnetz.de> | |||
| 2015-12-31 | Fix grammar in comment | Stefan Weil | |
| Signed-off-by: Stefan Weil <sw@weilnetz.de> | |||
| 2015-11-27 | Fix typos | Jakub Wilk | |
| 2015-11-07 | Fix undefined size jp2 box handling | mayeut | |
| Update #653 | |||
| 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-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 | Avoid pointer arithmetic with (void *) pointers. | Stephan Mühlstrasser | |
| 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. | |||
| 2015-10-19 | Fix HP compiler warning about redeclaration of function (#640) | Stephan Mühlstrasser | |
| 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. | |||
| 2015-10-18 | Fix format strings and unneeded assignment | Stefan Weil | |
| 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> | |||
| 2015-10-18 | Merge pull request #636 from uclouvain/opj_malloc-625 | Matthieu Darbois | |
| Update allocation functions Fix #625 Fix #624 Fix #635 | |||
| 2015-10-18 | Cleanup includes | mayeut | |
| 2015-10-18 | Fix _aligned_malloc usage | mayeut | |
| 2015-10-17 | Fix inconsistent behavior of malloc(0) | mayeut | |
| Update #635 Update #625 | |||
| 2015-10-17 | Add missing checks. Fix crash on failed allocation. | mayeut | |
| 2015-10-17 | Fixed crash on encoding | mayeut | |
| Update #624 Update #625 | |||
| 2015-10-15 | Fix OpenJPEG GitHub issue #633. | Stephan Mühlstrasser | |
| "opj_includes.h" must be included before system headers, otherwise inconsistent definitions of configuration macros lead to build failures on AIX. | |||
| 2015-10-13 | Remove the explicit restrict keyword | Mathieu Malaterre | |
| It would trigger a compiler error on xlc compiler. Fixes #620 | |||
| 2015-10-13 | I do not recall exactly... I would say that the correct version should be | Giuseppe Baruffa | |
| 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 | |||
| 2015-10-12 | Remove a possible uninitialized variable | Mathieu Malaterre | |
| Fixes #629 | |||
| 2015-10-12 | Minor style fix to remove c++ comments | Mathieu Malaterre | |
| 2015-10-12 | minor tweaks to the code | Mathieu Malaterre | |
| 2015-10-10 | Fix an issue with parenthesis | Mathieu Malaterre | |
| 2015-10-10 | Add paranoid sentinels | Mathieu Malaterre | |
| 2015-10-10 | implement a portable aligned realloc | Mathieu Malaterre | |
| 2015-10-10 | do not use aligned_alloc since it requires c11 | Mathieu Malaterre | |
| 2015-10-09 | cleanup header file and move to implementation | Mathieu Malaterre | |
| 2015-10-09 | Revert "Make sure to allocate on 16bits alignement. Fix issue #624" | mayeut | |
| This reverts commit 553714a87a92930dd69f5762e0615c12dfcbd873. | |||
| 2015-10-09 | Make sure to allocate on 16bits alignement. Fix issue #624 | Mathieu Malaterre | |
| 2015-10-07 | Fix warnings for C++ | Stefan Weil | |
| g++ complains about invalid conversions like these ones: error: invalid conversion from ‘const char*’ to ‘char*’ [-fpermissive] error: invalid conversion from ‘void*’ to ‘opj_precision* {aka opj_prec*}’ [-fpermissive] Signed-off-by: Stefan Weil <sw@weilnetz.de> | |||
| 2015-10-07 | Fixed problem that C++ compilation failed because of enum variable. | Stephan Mühlstrasser | |
| Replaced usage of an enum typedef for a variable that is used for bit flags with OPJ_UINT32 type. | |||
| 2015-10-06 | Added missing casts for return values of opj_malloc()/opj_calloc(). | Stephan Mühlstrasser | |
| 2015-10-02 | Add check for seek support before trying TPsot==TNsot workaround | mayeut | |
| 2015-09-29 | Fix up-scaling bit depth | mayeut | |
| Fixes #609 | |||
| 2015-09-29 | Fix typo in variable name | Stefan Weil | |
| This makes checks with codespell easier. Signed-off-by: Stefan Weil <sw@weilnetz.de> | |||
| 2015-09-29 | Fix typos in comments and string | Stefan Weil | |
| Most typos were found by codespell. Signed-off-by: Stefan Weil <sw@weilnetz.de> | |||
| 2015-09-25 | Provide safer string copy than strncpy | mayeut | |
| As per @boxerab suggestion in commit b9ca882749597e4943e609daba1d3c27694fe2ff | |||
| 2015-09-25 | Fix resource leak | mayeut | |
| 2015-09-25 | Fix resource leaks & unchecked resource allocations | mayeut | |
| 2015-09-24 | Fix some resource leaks | mayeut | |
| 2015-09-23 | Use buffer on stack to read TGA header | mayeut | |
| Fixes a potential leak Fixes #601 | |||
| 2015-09-23 | Fix warning in rle4 decoding | mayeut | |
| 2015-09-17 | Fix resource leak in opj_j2k_create_cstr_index | mayeut | |
| Fixes #599 | |||
