| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2012-03-16 | [v2] remove ref to png.h file on win32v2 | Mathieu Malaterre | |
| 2012-03-11 | [v2] do not make freeimage compulsary when not needed. | Mathieu Malaterre | |
| 2011-07-03 | fixed version number of openjpeg 2.0.0 in openjpeg.h | Antonin Descampe | |
| 2011-04-13 | [V2] fixed dllexport definition (credit to vincent torri) | Antonin Descampe | |
| 2011-04-12 | Removed folders mj2, JavaOpenJpeg, jpwl, OPJViewer (not compliant with v2). ↵ | Antonin Descampe | |
| Removed obsolete windows project files. Removed obsolete Makefiles (only build method currently supported with v2 branch: cmake). Renamed ChangeLog to CHANGES. Renamed License.txt to LICENSE. Removed obsolete README files. | |||
| 2011-04-12 | Fixed internal function names conflict with Jasper ↵ | Antonin Descampe | |
| (http://code.google.com/p/openjpeg/issues/detail?id=30) | |||
| 2010-11-25 | Fix leak in jp2_read_header_procedure() (from even.rouault, see issue 29 on ↵ | Antonin Descampe | |
| googlecode) | |||
| 2010-10-07 | The original v1.3 branch had: | Mathieu Malaterre | |
| ((int*)tiledp)[(j * tile_w) + i] = tmp / 2; while v2 had: ((OPJ_INT32*)tiledp)[(j * tile_w) + i] = tmp >> 1; Divide by two and a right shift operation are only equivalent when the data is unsigned. In this case the data is signed, so the right shift operation is incorrectly clearing the sign bit. Patch from: Sheet Spotter | |||
| 2010-10-05 | minor bugs fixed (see issue 31 on googlecode - Thanks to winfried) | Antonin Descampe | |
| 2010-10-05 | fixed problems with partial decodes (non-zero value for cp_reduce) that can ↵ | Antonin Descampe | |
| cause corrupted images and crashes (issue 41) - thanks to Sheet Spotter | |||
| 2010-10-05 | fixed minor problems that prevented the solution file from building in ↵ | Antonin Descampe | |
| Windows (issue 40) - thanks to Sheet Spotter | |||
| 2010-08-22 | The lrintf function should use "long" instead of "int" | Luis Ibanez | |
| for the type of its internal variable. | |||
| 2010-08-22 | BUG: The _asm directive is not available in Visual Studio 9, 64bits. | Luis Ibanez | |
| An alternative vainilla implementation has been added here, based on code from VXL, vnl_math.h. | |||
| 2010-08-22 | Fix contributed by Bill Lorensen, to make it build in MinGW. | Luis Ibanez | |
| 2010-08-20 | BUG: Fixing case in which the pointer the data buffers doesn't | Luis Ibanez | |
| get positioned at the beginning of the buffer after a new buffer load. This case only happens when the pointer happens to be at the end of the buffer when the request for the new block arrives. Fix contributed by Bill Hoffman. | |||
| 2010-08-11 | For backward compatibility | Mathieu Malaterre | |
| 2010-08-11 | Fix case | Mathieu Malaterre | |
| 2010-07-01 | fix compilation with freeimage | Mathieu Malaterre | |
| 2010-07-01 | Prevent segfault later down in the pipeline | Mathieu Malaterre | |
| 2010-07-01 | backport from trunk | Mathieu Malaterre | |
| 2010-06-23 | Attempt to fix win32 compilation | Mathieu Malaterre | |
| 2010-06-22 | Finish fixing up bugs with png i/o | Mathieu Malaterre | |
| 2010-06-22 | add more test. prevent segfault | Mathieu Malaterre | |
| 2010-06-22 | Import j2k_dump from trunk (much faster) | Mathieu Malaterre | |
| 2010-06-22 | Start merging change from svn trunk | Mathieu Malaterre | |
| 2010-06-21 | Start using cmake API for easy packaging | Mathieu Malaterre | |
| 2010-06-21 | Fix installation | Mathieu Malaterre | |
| 2010-06-21 | minor change | Mathieu Malaterre | |
| 2010-06-21 | test all codecs. Adding forgotten file to search for freeimage | Mathieu Malaterre | |
| 2010-06-21 | increase coverage by testing all codecs | Mathieu Malaterre | |
| 2010-06-21 | make j2k_to_image return errors | Mathieu Malaterre | |
| 2010-06-21 | add some more documentation | Mathieu Malaterre | |
| 2010-06-21 | add some documentation on how to use it | Mathieu Malaterre | |
| 2010-06-21 | adding a template ctest file | Mathieu Malaterre | |
| 2010-06-21 | Minor tweaks to cmake files | Mathieu Malaterre | |
| 2010-06-12 | Addression Windows warnings about mismatch between signed and unsigned. | Luis Ibanez | |
| 2010-06-02 | ENH: Fixing compilation warnings on gcc 4.4. | Luis Ibanez | |
| 2010-06-02 | ENH: Disable the set of CMAKE_C_FLAGS. It precluded the use of flags for ↵ | Luis Ibanez | |
| performing code coverage. | |||
| 2010-05-26 | ENH: Added custom configuration for CTest. This allows to filter out | Luis Ibanez | |
| files for Code Coverage, and to filter out acceptable warnings messages. | |||
| 2010-05-26 | ENH: Enabling the lines that configure testing for the Dashboard. | Luis Ibanez | |
| 2010-05-26 | ENH: Adding configuration for submitting builds to the CDash Dasboard | Luis Ibanez | |
| 2010-04-08 | [v2.0] Fixed problem with Borland C++ Builder (Borland C do not have ↵ | Francois-Olivier Devaux | |
| lrintf). Thanks Marek Mauder for this fix. | |||
| 2010-04-08 | [v2.0] Fixed pi.c bug (issue 15 on google code). Thanks to Anton Lionel for ↵ | Francois-Olivier Devaux | |
| catching this. | |||
| 2010-04-08 | [v2.0] Fixed MJ2 codec bugs (issues 23-24 on google code). Thanks to ↵ | Francois-Olivier Devaux | |
| Winfried for these patches. | |||
| 2010-03-26 | Added support for "jpc" codestreams which are equivalent to "j2c" ↵ | Francois-Olivier Devaux | |
| codestreams [v2.0]. Thanks to Winfried for this patch | |||
| 2010-03-24 | Code improvements using 'g++-4.4.0' to trace the code (v2.0). Thanks to ↵ | Francois-Olivier Devaux | |
| Winfried for this patch. | |||
| 2010-03-07 | Fixed small compatibility issues with win32 in codec (moved include <strings.h>) | Francois-Olivier Devaux | |
| 2010-03-05 | Updated makefiles for v1.4 and v2.0 | Francois-Olivier Devaux | |
| 2010-02-16 | * [FOD] Fixed libopenjpeg Makefile | Francois-Olivier Devaux | |
| 2010-01-20 | [FOD] Created a new constant in openjpeg.h to differentiate the case when ↵ | Francois-Olivier Devaux | |
| the colorspace is not supported by the library and when it is not specified in the codestream. Suggested by Matteo Italia. | |||
