summaryrefslogtreecommitdiff
path: root/libopenjpeg/jp2.c
AgeCommit message (Collapse)Author
2012-01-23[1.5] fix issue #104Antonin Descampe
2012-01-20Make r1330 more robust. Display more info.Mathieu Malaterre
2012-01-20Fix: MSVR-11-117 - Vulnerability Report.Mathieu Malaterre
2011-12-08Remove warnings seen on the dashboardMathieu Malaterre
2011-10-10[1.5] enabled JPP stream in JPIP (result of GSoC program)Antonin Descampe
2011-09-09BRANCH-1.5:added a new indexer functionality to the library. With the new ↵Antonin Descampe
-jpip option at encoding, the user can now generate a JP2 file including an XML box with the index used when browsing the image with JPIP
2011-08-10removed unused parameters warnings with the solution proposed by myself and ↵Mickael Savinaud
Bob Friesenhahn
2011-07-29solve some obvious warnings for WIN platform, increase number of warning ↵Mickael Savinaud
reported on the dashboard, correct last warnings with gcc 4.4 (-Wall)
2011-07-03fixed handling of "jp2->meth" value (Restricted ICC profile handling ↵Antonin Descampe
currently not implemented)
2011-05-18defined new type "opj_bool", and new constants OPJ_FALSE and OPJ_TRUE, to ↵Antonin Descampe
avoid having to deal with "stdbool.h" (patch from Winfried)
2011-04-12Fixed internal function names conflict with Jasper ↵Antonin Descampe
(http://code.google.com/p/openjpeg/issues/detail?id=30)
2011-01-30fixed warnings in jp2.c (signed compared to unsigned) and dwt.c (bad cast) ; ↵Antonin Descampe
removed depcomp file from trunk (automatically copied by automake in main folder)
2011-01-30replaced en-dash with standard dash in jp2.cAntonin Descampe
2010-12-08 (thanks to Winfried for his help)Antonin Descampe
* [antonin] changed remaining "WIN32" to "_WIN32" ! [antonin] libopenjpeg has no more dependency on LCMS lib. Everything concerning color (icc profile, conversion to rgb, etc) has been put outside libopenjpeg and is used in j2k_to_image.c and mj2_to_frames.c. - [antonin] removed "opj_convert{.c,.h}" + [antonin] added a directory "common/" that contains "getopt{.c,.h}" (previously in "codec/compat"). + [antonin] added files "color{.c,.h}" in "common/" that define the code for icc profile management and sycc_to_rgb conversion + [antonin] added "common/format_defs.h" that contains common definitions used in image_to_j2k, j2k_to_image, j2k_dump.
2010-11-22reverted 'include "../opj_config.h"' to 'include "opj_config.h"'Antonin Descampe
2010-11-15minor changes in header inclusionsAntonin Descampe
2010-10-24Fixed doxygen data inside source code (from winfried)Antonin Descampe
2010-10-22Currently the Visual Studio builds are broken in the SVN. Attached a patch ↵Antonin Descampe
to fix this issue (from szekerest)
2010-10-05Added files to let people build openjpeg with configure tools ; Added ↵Antonin Descampe
makefiles to let people manually build openjpeg on *nix platforms ; Removed obsolete Makefiles ; Renamed dirent.h to windirent.h ; Made optional the PNG, TIFF, and LCMS support in CMake files ; Added opj_config* files to configure openjpeg before building it (opj_config.h generated by configure, cmake, or manually by the user) ; Renamed this file from ChangeLog to CHANGES ; Renamed License.txt to LICENSE ; Updated README files ; Added INSTALL and LICENSE files ; Added man pages
2008-02-28Removed the J2KViewer module, which has been replaced by OPJViewer and fixed ↵Francois-Olivier Devaux
the error handling of j2k_decode in jp2.c, thanks to Robin Cornelius
2007-10-18Patch from Callum Lewick. Memset patch. See ChangeLog for more details. ↵Francois-Olivier Devaux
Thanks Callum !
2007-09-07Indexes can now be generated when decoding J2K codestreams.Francois-Olivier Devaux
2007-08-30Changed the OpenJPEG library interface to enable users to access information ↵Francois-Olivier Devaux
regarding the codestream (also called index).
2007-06-21Output image color space set when decoding a JP2 fileFrancois-Olivier Devaux
2007-05-10MJ2 codec updated from LibOpenJPEG version 0.97 to LibOpenJPEG version 1. ↵Francois-Olivier Devaux
Hence, the MJ2 codec will now take advantage of all the improvements and optimizations done on the LibOpenJPEG library.
2007-01-15Copyright updateFrancois-Olivier Devaux
2007-01-03JP2 module: Tests during encoding if the number of components respects the ↵Francois-Olivier Devaux
JPEG 2000 standard.
2006-01-26fixed various minor warnings occuring under gcc, added corrections proposed ↵Freeimage
in the forum
2006-01-20fixed various minor warnings with gdcm patchesAntonin Descampe
2006-01-19fixed a bug in jp2_read_ihdr (need to allocate jp2->comps)Freeimage
2005-12-08OpenJPEG version 1.1Antonin Descampe
2005-12-02openjpeg version 1.0 (previous version still available with tag opj0-97)Antonin Descampe
2005-11-09minor change to avoid warnings about signednessAntonin Descampe
2005-11-01Changes proposed by Mathieu Malaterre from the GDCM project... Thanks a lot ↵Antonin Descampe
Mathieu - '//' replaced by '/* */' - inclusion of int.h in int.c - inclusion of j2k.h in int.h in order to export symbols - adding (void) var when a variable is declared but not used - some explicit cast - CLOCKS_PER_SEC is declared as float in bcc55, so there is a need to cast it to int for the modulo operation - some variables changed from float -> double
2005-10-20Modifications to decoding of JP2H box in order to be compatible with JP2 ↵Francois-Olivier Devaux
conformance files
2004-12-08Modularity increase in jp2_init_stdjp2 function and jp2c box functions to ↵Francois-Olivier Devaux
enable new version of MJ2 module
2004-11-26Modifications to increase modularity of jp2 coding/decodingFrancois-Olivier Devaux
2004-10-06Small bug corrected: unsigned int to int conversion at line 417Francois-Olivier Devaux
2004-08-31Order of data written to jp2_struct->cl inversed in jp2_read_ftyp functionFrancois-Olivier Devaux
2004-07-16Bug on jp2_struct->comps memory allocation fixedFrancois-Olivier Devaux
2004-07-16Multiple tile bug fixed (line 438)Francois-Olivier Devaux
2004-07-13Structure j2k_option_t deleted and option "-reduce" integrated to j2k_cp_t.Antonin Descampe
Parameters changed for j2k_decode, jp2_decode, j2k_decode_jpt_stream
2004-07-07First version of JP2 file formatFrancois-Olivier Devaux