summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-03-16[v2] remove ref to png.h file on win32v2Mathieu Malaterre
2012-03-11[v2] do not make freeimage compulsary when not needed.Mathieu Malaterre
2011-07-03fixed version number of openjpeg 2.0.0 in openjpeg.hAntonin Descampe
2011-04-13[V2] fixed dllexport definition (credit to vincent torri)Antonin Descampe
2011-04-12Removed 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-12Fixed internal function names conflict with Jasper ↵Antonin Descampe
(http://code.google.com/p/openjpeg/issues/detail?id=30)
2010-11-25Fix leak in jp2_read_header_procedure() (from even.rouault, see issue 29 on ↵Antonin Descampe
googlecode)
2010-10-07The 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-05minor bugs fixed (see issue 31 on googlecode - Thanks to winfried)Antonin Descampe
2010-10-05fixed 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-05fixed minor problems that prevented the solution file from building in ↵Antonin Descampe
Windows (issue 40) - thanks to Sheet Spotter
2010-08-22The lrintf function should use "long" instead of "int"Luis Ibanez
for the type of its internal variable.
2010-08-22BUG: 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-22Fix contributed by Bill Lorensen, to make it build in MinGW.Luis Ibanez
2010-08-20BUG: Fixing case in which the pointer the data buffers doesn'tLuis 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-11For backward compatibilityMathieu Malaterre
2010-08-11Fix caseMathieu Malaterre
2010-07-01fix compilation with freeimageMathieu Malaterre
2010-07-01Prevent segfault later down in the pipelineMathieu Malaterre
2010-07-01backport from trunkMathieu Malaterre
2010-06-23Attempt to fix win32 compilationMathieu Malaterre
2010-06-22Finish fixing up bugs with png i/oMathieu Malaterre
2010-06-22add more test. prevent segfaultMathieu Malaterre
2010-06-22 Import j2k_dump from trunk (much faster)Mathieu Malaterre
2010-06-22Start merging change from svn trunkMathieu Malaterre
2010-06-21Start using cmake API for easy packagingMathieu Malaterre
2010-06-21Fix installationMathieu Malaterre
2010-06-21minor changeMathieu Malaterre
2010-06-21test all codecs. Adding forgotten file to search for freeimageMathieu Malaterre
2010-06-21increase coverage by testing all codecsMathieu Malaterre
2010-06-21make j2k_to_image return errorsMathieu Malaterre
2010-06-21add some more documentationMathieu Malaterre
2010-06-21add some documentation on how to use itMathieu Malaterre
2010-06-21adding a template ctest fileMathieu Malaterre
2010-06-21Minor tweaks to cmake filesMathieu Malaterre
2010-06-12Addression Windows warnings about mismatch between signed and unsigned.Luis Ibanez
2010-06-02ENH: Fixing compilation warnings on gcc 4.4.Luis Ibanez
2010-06-02ENH: Disable the set of CMAKE_C_FLAGS. It precluded the use of flags for ↵Luis Ibanez
performing code coverage.
2010-05-26ENH: Added custom configuration for CTest. This allows to filter outLuis Ibanez
files for Code Coverage, and to filter out acceptable warnings messages.
2010-05-26ENH: Enabling the lines that configure testing for the Dashboard.Luis Ibanez
2010-05-26ENH: Adding configuration for submitting builds to the CDash DasboardLuis 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-26Added support for "jpc" codestreams which are equivalent to "j2c" ↵Francois-Olivier Devaux
codestreams [v2.0]. Thanks to Winfried for this patch
2010-03-24Code improvements using 'g++-4.4.0' to trace the code (v2.0). Thanks to ↵Francois-Olivier Devaux
Winfried for this patch.
2010-03-07Fixed small compatibility issues with win32 in codec (moved include <strings.h>)Francois-Olivier Devaux
2010-03-05Updated makefiles for v1.4 and v2.0Francois-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.