add abi-check files and reports to gh-pages
[openjpeg.git] / abi-check / changelog / openjpeg / 1.3 / log.html
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2     <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
3     <head>
4     <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5     <meta name="keywords" content="OpenJPEG, 1.3, changes, changelog" />
6     <meta name="description" content="Log of changes in the package" />
7     <link rel="stylesheet" type="text/css" href="../../../css/common.css" />
8     <link rel="stylesheet" type="text/css" href="../../../css/changelog.css" />
9     
10     
11     <title>
12         OpenJPEG 1.3: changelog
13     </title>
14     
15     </head>
16
17 <body>
18 <table cellpadding='0' cellspacing='0'><tr><td align='center'><h1 class='tool'><a title='Home: ABI tracker for OpenJPEG' href='../../../timeline/openjpeg/index.html' class='tool'>ABI<br/>Tracker</a></h1></td><td width='30px;'></td><td><h1>(OpenJPEG)</h1></td></tr></table><hr/>
19 <br/>
20 <br/>
21 <h1>Changelog for <span class='version'>1.3</span> version</h1><br/><br/>
22 <div class='changelog'>
23 <pre class='wrap'>What's New for OpenJPEG
24
25 * : fixed
26 - : removed
27 ! : changed
28 + : added
29
30 December 21, 2007
31 * [FOD] Bug fixed by David Bruken. Fixed memory allocation issue in opj_malloc.h
32 ! [FOD] Possible errors in pi_create_encode handled
33
34 December 19, 2007
35 * [Antonin] changed variables names alpha, beta, gamma, delta in dwt.c to avoid re-declarations on Macosx
36 ! [Parvatha] In pi.c, removed the Recursive function pi_check_next_level() and modified the code.
37 * [FOD] Fixed allocation problem in pi.c
38
39 December 19, 2007
40 + [FOD] In mqc.h, changed MQC_NUMCTXS from 32 to 19 as there are only 19 possible contexts
41
42 December 10, 2007
43 + [FOD] First import of JAVAOpenJPEG, a Java wrapper of OpenJPEG, developed by Patrick Piscaglia of Telemis (www.telemis.com). 
44                 Thank you Patrick for this new module !
45
46 November 29, 2007
47 ! [GB] Added index.h and index.c in VC6 projects; wrapped index.h in the C++ preprocessor; modified OPJViewer project and some files.
48
49 November 14, 2007
50 + [FOD] Created the file index.c in the codec directory. This file handles the creation of index files, 
51                 at encoding and decoding. 
52 * [FOD] Fixed bugs during the creation of the index (PCRL progression order)
53 * [FOD] Fixed the maximum number of resolutions a user can discard while decoding.
54                 Added an error state in J2K_STATE (j2k.c)
55
56 November 14, 2007
57 ! [FOD] - First Patch by Callum Lerwick. Instead of reinventing realloc, j2k_read_sod now just uses opj_realloc in j2k.c
58                 - Second Patch by Callum Lerwick. This patch rearranges the largest memory allocations so they're allocated as 
59                 late as possible, and freed as soon as possible. This cuts memory usage by about half on two large test images.
60                 - Third Patch by Callum Lerwick. The opj_tcd_cblk array is one of the largest allocations, because it
61                 contains a bunch of static buffers. This also makes it a major source of cache thrashing. This patch allocates 
62                 the buffers from the heap, and dynamically sizes them in the decoder. I have not yet managed to dynamically size 
63                 them in the encoder, getting the decoder to do it was tricky enough... I also split opj_tcd_cblk_t into separate 
64                 encode and decode versions. A lot of fields were not used by both, so this cuts its size even further.
65
66 * [FOD] Avoided ABI breakage
67
68 November 13, 2007
69 ! [FOD] Patch by Dzonatas and Callum Lerwick.
70         Fp/vectorization patch which basically converts most of the irreversible decode codepath to floating point,
71         eliminating a few rounds of int/fp conversion, resulting in a vast performance improvement,
72         and an increase in accuracy.
73
74 November 8, 2007
75 ! [FOD] In t1.c, small change to avoid calling twice t1_getwmsedec()
76         Patches from Callum Lewick:
77                 - Basic gcc optimization flags in cmake and makefile match.
78                 - Fixed some spelling errors in dwt.c.
79
80 November 5, 2007
81 *+ [GB] Fixed a bug which prevented JPWL from working on multi-tiled images; added some more fields in the interface info structures 
82 (keep a list of markers, save start packet number for each tile)
83
84 October 23, 2007
85 * [GB] Improved success for the linux build; OPJViewer shows all the COM contents
86  
87 October 18, 2007
88 * [FOD] Changed the ROI parameter in the image_to_j2k codec to make it correspond to the documentation (i.e. -ROI c=0,U=25)
89 * [FOD] Patch from Callum Lewick. Memset patch. 
90                 The main idea of the patch is that currently opj_malloc clears all allocations, which unnecessarily
91                 dirties up the cache and eats bandwidth. This patch makes it no longer do so, and I've painstakingly determined which allocations actually need
92                 to be cleared and changed them to use opj_calloc() instead. I previously tried to just get rid of the opj_*alloc wrappers but that
93                 idea was nixed, so this time I'm trying it with macros. I also put in a gcc pragma that helps enforce their use. Which got messy.  :)  It caught a
94                 few places they weren't used but it also revealed that the mj2 tools are not very cleanly separated from the library. It includes all the
95                 internal headers, but it wasn't using the malloc wrappers. I figured the binaries should be "external" and have minimal knowledge of the
96                 internals of the library. I patched them to not include opj_includes.h, and include only the internal headers they actually need. However,
97                 they're using the opj_clock() function, which is in with the malloc wrappers. So I decided to move the malloc wrappers to their own header. 
98                 But mj2.c seems to want to be "internal", so I patched it to use the wrappers. Note that this patch changes the semantics of opj_malloc, it no longer
99                 clears the memory it allocates. If you need it to be cleared, you must use opj_calloc instead, or memset it yourself. It is also somewhat
100                 invasive, please test it extensively. I've been pounding on it all summer with my test suite, Second Life, and valgrind, and it checks out clean.
101
102 October 12, 2007
103 * [FOD] Changed the way the image structure is allocated when the decoding parameters include some resolutions to discard. 
104         This should have a significant impact for the decoding of huge images when some resolutions are discarder (-r parameter)
105         Warning: The output image size is now reduced when discarding resolutions !
106
107 October 10, 2007
108 * [FOD] Patch from Callum Lewick. Clean up of j2klib.h for the aligned malloc stuff. 
109         It makes it work right with mingw, as _mm_malloc() isn't a macro, attempts to pave the way to using cmake 
110         to check for this stuff and combines a patch from Dana Fagerstrom at Sun that makes it use memalign() on Solaris
111         convert.c: Changed some error comments for TIFF images
112
113 September 27, 2007
114 * [FOD] Patch from Callum Lewick. Fixed dwt.c where an alignment in buffer was problematic under x86_64.
115
116 September 25, 2007
117 * [Mathieu Malaterre] BUG: Fix previous patch from Callum Lerwick. I have no
118     clue what CMAKE_INSTALL_LIBDIR refers too. Bump up cmake 2.2 restriction to
119     cmake 2.4 because of previous patch (not backward compatible). Properly set the SOVERSION in a cross plateform way (yes WIN32 is a platform)
120
121 September 19, 2007
122 * [Parvatha] Fixed issues with generation of SOP marker. 
123
124 September 18, 2007
125 * [Parvatha] Fixed issues with Reading and Writing TIF images in convert.c to avoid segmentation fault. 
126 * [Parvatha] Fixed issues relating to using user specified rates for CINEMA option for multiple images.
127
128 September 17, 2007
129 * [FOD] Fixed issues with cstr_info when codestream has components with different number of resolutions. 
130 ! [FOD] OpenJPEG library interface modified to retain compatibility with version 1.2 
131
132 September 12, 2007
133 * [FOD] Patch from Callum Lerwick.
134                 Fixed the library linking so it links with the soversion properly set. 
135                 Fixes up the install targets so that it interacts properly with RPM. 
136                 Install target for MJ2. Sets some necessary and useful CFLAGS if gcc is in use.         
137 * [FOD] Updated the MJ2 codec to be compatible with the recent changes in the OpenJPEG library
138
139 September 11, 2007
140 * [GB] JPWL encoding is finalized correctly into the JP2 file format; added an additional structure in opj_codestream_info, to keep a record of the written markers
141
142 September 8, 2007
143 * [GB] Adapted the JPWL and OPJViewer code to new interface; fixed a samll bug in JPWL which created large EPBs even when null protection was specified
144
145 September 7, 2007
146 + [FOD] Indexes can now be generated when decoding J2K codestreams.
147 * [Mathieu Malaterre] Upon failure, properly return error code (!=0).
148 * [Mathieu Malaterre] CMake: Add cmake code to do testing if user has properly setup a testimages directory
149
150 September 6, 2007
151 + [Mathieu Malaterre] CMake: start compiling mj2, jpwl and jp3d
152 + [Mathieu Malaterre] CMake: output all executable/libs into one single directory
153 + [Mathieu Malaterre] CMake: start compiling index_create
154 + [Mathieu Malaterre] OpenJPEG.rc update copyright year
155 + [Mathieu Malaterre] CMake: add Java j2kviewer but do not compile it using cmake since cmake has too poor support for Java. Should create a custom command running ant instead.
156 + [Mathieu Malaterre] CMake: Add doxygen output
157 + [GB] One more field in the codestream_info struct for recording the number of packets per tile part; JPWL now distributes the EPBs in all the tile part headers
158 + [Mathieu Malaterre] CMake: Add very simple tests (simply run command line with no option)
159 * [Mathieu Malaterre] Fix unitialized read in img_fol (we may need a smarter initialize than memset)
160
161 September 4, 2007
162 + [GB] Added some fields in the codestream_info structure: they are used to record the position of single tile parts. 
163                 Changed also the write_index function in the codec, to reflect the presence of this new information.
164
165 September 3, 2007
166 + [GB] Added the knowledge of JPSEC SEC and INSEC markers (you have to compile the JPWL project). Management of these markers is limited to skipping them without crashing: 
167                 no real security function at this stage. Deprecated USE_JPSEC will be removed next
168
169 August 31, 2007
170 * [GB] Fixed save capabilities in OPJViewer due to recent code upgrade
171
172 August 30, 2007
173 * [FOD] Changed the OpenJPEG library interface to enable users to access information regarding the codestream (also called codestream index).
174                 This index is usefull for all applications requiring to have a scalable acces to the codestream (like JPIP applications, ...)
175         Currently, this information is only available when encoding an image.       
176 + [FOD] Added the information regarding the end of packet position in the index        
177
178 August 28, 2007
179 * [FOD] Fixed wrong destructors called in openjpeg.c
180 * [FOD] Fixed bug in j2k_decode_jpt_stream
181
182 August 24, 2007
183 * [Parvatha] The end of main header is calculated after TLM and POC marker for Dcinema.
184
185 August 21, 2007
186 + [FOD] Added support for Visual Studio 2005
187 * [FOD] Robustified MJ2 codecs
188 * [Parvatha] Solved problems with codec reading from image file directory when filename had more than one "." in name
189 * [Callum Lerwick] Minor cleanup patch, that gets rid of a bunch of "old style declaration" warnings from Intel's compiler
190 * [Callum Lerwick] Aligned malloc using Intel's _mm_malloc(). Cleanup on the t1 memory allocation, getting rid of some leftover debug code
191 * [Callum Lerwick] Memory leaks fixed
192 * [Callum Lerwick] Reworks of t1_updateflags to get rid of the shift operation
193 * [Callum Lerwick] mqc_setcurctx moved to the header to allow it to be inlined into the t1.
194 * [Callum Lerwick] Consolidated some calls to mqc_setcurctx.
195 * [Callum Lerwick] Cleaned up t1_generate_luts to output the proper types.
196 * [Callum Lerwick] Replaced the large ctxno_mag lookup table with a small bit of inline-able branchless code
197 * [Callum Lerwick] Moved the orient flipping into the ctxno_zc table.
198
199 August 20, 2007
200 + [FOD] Added support for the TGA file format in the codec
201
202 August 08, 2007
203 * [Parvatha] Fixed the DCinema filesize allocation. It now includes the SOT marker size
204
205 August 02, 2007
206 + [GB] Added a basic saving capability to OPJViewer
207
208 July 18, 2007
209 ! [FOD] Updated libtiff library version to 3.8.2 (for WIN32)
210 * [FOD] Updated BMP and PxM truncation when decoding J2K files with more than 8 bits
211
212 July 17, 2007
213 * [FOD] Fixed raw option for images with more than three components
214
215 July 17, 2007
216 + [FOD] Added support for RAW images. This module has been developped by the University of Perugia team. Thanks to them ! [image_to_j2k.c j2k_to_image.c convert.c convert.h]
217
218 July 13, 2007
219 ! [FOD] Modified the memory allocation for codestreams containing multiple tiles. The memory is now allocated for each tile indenpendently, 
220                 leading to an important decrease of the virtual memory needed. [j2k.c tcd.h tcd.c]
221 ! [FOD] Modified old comments about the ability to decode mega-images and comments about the disk size necessary to do this. [image_to_j2k.c and frames_to_mj2.c]
222 * [FOD] Added 2000 bytes for the memory allocation in cio.c for the minimum size of headers (useful in case of very small images) [cio.c]
223
224 July 12, 2007
225 * [GB] fixed a bug in JPWL module, which prevented to exploit the full error correction capability of RS codes (e.g. it gave up at 5 errors, 
226                 even if 6 were correctable); defined a JPWL_MAXIMUM_EPB_ROOM for better customization of the maximum dimension of EPBs (the dimension 
227                 is pre-calculated on an hypothesis, if it goes beyond 65535 there will be problems, thus we give a little less than the max, let's say 65450)
228
229 July 8, 2007
230 * [ANTONIN] fixed the size of the memory allocation in cio.c (confusion between bits and bytes)
231
232 June 21, 2007
233 * [FOD] Output image color space set when decoding a JP2 file in jp2.c
234 + [GB] Previous, home, and next frame buttons for exploring MJ2 files in OPJViewer
235
236 June 18, 2007
237 * [GB] Reload image doesn't crash in OPJViewer; more settings saved to registry
238  
239 June 16, 2007
240 + [GB] Possibility to disable parsing in OPJViewer; also, saves common settings to the registry
241
242 June 15, 2007
243 * [FOD] Fixed the generation of index files 
244
245
246 ----------------------
247 MAY 4, 2007
248 VERSION 1.2.0 RELEASED
249 ----------------------
250
251 May 4, 2007
252 * [FOD] Bugs corrected in decoding of command line (getopt.c), in the handling of 16 bit files (t1.c and tcd.c) and the calculation of elapsed time for multiple tiles parts (tcd.c and tdc.h).
253
254 June 2, 2007
255 + [GB] OPJViewer opens now BMP, PNG, GIF, PNM, TIFF (with wxWidgets internals); added an encoder settings tab, for future integration with "save file as..." in JPEG 2000 format
256
257 May 31, 2007
258 * [FOD] Fixed the handling of 16bit TIFF files for cinema compression. Modified "convert.c"
259 * [FOD] Fixed the parameters used for cinema compression (9-7 transform used instead of 5-3). Modified "image_to_j2k.c"
260
261 May 24, 2007
262 * [FOD] Bug fixed by Sylvain Munaut. Change in the reading of the POC marker. Since COD/COC can be anywhere in the header, the decoder cannot always know while decoding the POC marker 
263                 the value of numlayers and numresolution.
264
265 May 23, 2007
266 ! [FOD] Patch suggested by Callum Lerwick &lt;seg@haxxed.com&gt;: "This makes the t1 data arrays dynamic, which greatly reduces cache thrashing. Also, some minor cleanup to prevent unnecessary casts"
267
268 May 22, 2007
269 ! [FOD] Patch suggested by Callum Lerwick &lt;seg@haxxed.com&gt;: "Some formatting cleanups, 
270                 so that the long function definitions and calls fit on screen. Use of prefix increment which is theoretically faster, in practice any sane compiler can optimize a postfix 
271                 increment but its best not to count on such things. Consolidation of some redundant calculations in the inner loops, which becomes very useful in the future autovectorize patch."
272 ! [FOD] Patch suggested by Callum Lerwick &lt;seg@haxxed.com&gt;: "This changes the flag code in t1 to use a flag_t type, which can then be changed to reduce RAM usage. It is now typedef to a short."
273 ! [FOD] Patch suggested by Callum Lerwick &lt;seg@haxxed.com&gt;: "This patch makes the t1 LUTs static. I actually intend this as a prelude to possibly eliminating some or all of the LUTs entirely."
274
275 May 11, 2007
276 - [FOD] JP3D library Binaries removed from SVN.
277 ! [FOD] MJ2 codec updated from LibOpenJPEG version 0.97 to LibOpenJPEG version 1. Hence, the MJ2 codec will now take advantage of all the improvements and optimizations done on the LibOpenJPEG library.
278 ! [FOD] Possibility to choose to apply MCT (multiple component transform) enabled, and new decoding_limit: DECODE_ALL_BUT_PACKETS (openjpeg.h)
279
280 April 26, 2007
281 + [gdcm] Add basic steps on how to use CMake for building examples (README.cmake)
282
283 April 25, 2007
284 + [FOD] Modification of the openjpeg.h file to avoid and ABI break with v1.1, removed the dangerous #IFDEF JPWL and added tcp_mct in cparameters.
285
286 April 23, 2007
287 + [GB] Enable/disable image decoding in OPJViewer
288
289 April 12,2007
290 * [Parvatha] Fixed Error in tiftoimage(). Modification in convert.c.
291
292 April 10,2007
293 + [Parvatha] Accepting "j2c"  as format for Encoding and Decoding. Modification in image_to_j2k.c.
294 * [Parvatha] Modified imagetotif() to read images with signed data. Modification in convert.c.
295
296 April 5, 2007
297 ! [FOD] fix.h optimized. Thanks a lot to Dzonatas &lt;dzonatas at dzonux.net&gt; !
298 ! [FOD] dwt.c optimized. Thanks a lot to Dzonatas &lt;dzonatas at dzonux.net&gt; !
299 ! [FOD] t1.c optimized. Thanks a lot to Callum Lerwick &lt;seg at haxxed.com&gt;  !
300
301 April 4,2007
302 + [Parvatha] Digital cinema compliance for 4K chosen by "-cinema4K" option. Modification in image_to_j2k.c.
303 + [Parvatha] Bit rate limitation for each color component. Modification in image_to_j2k.c, t2.c.
304 * [Parvatha] Modified and tested Progression order change "-POC" option. Modification in image_to_j2k.c, j2k.c, pi.c.
305 + [Parvatha] Function j2k_check_poc_val() to check for possible loss of packets in case of wrong POC declaration. Modification in j2k.c.
306 + [Parvatha] Structure T2_MODE. This tells if the t2_encode_packets() is called during Threshold calculation or in Final pass. Modification in j2k.h, tcd.c
307
308 March 30, 2007
309 * [GB] OPJViewer should now work under Linux, at least with not big j2k files. Tested under Suse 10.1 64 bit.
310
311 March 29, 2007
312 * [Parvatha] Enable accepting file names with `-� symbol .Modification getopt.c
313 * [Parvatha] Rsiz profile name generation to be STD_RSIZ for profiles which are not DCI compliant.Modification in image_to_j2k.c
314 ! [Parvatha] renamed convert_progression_order to j2k_convert_progression_order. Modification j2k.c
315 * [Parvatha] Calculation of number of tile part in each tile in j2k_calculate_tp. Modification j2k.c
316 ! [Parvatha] j2k_setup_encoder to set bit rate limitation for digital cinema compliance with quality option. Modification in j2k.c
317 * [Parvatha] Equation to check multiple tile precincts. Modification pi.c
318 ! [Parvatha] array size generation of pi-&gt;include in pi_initialise_encode().Modification in pi.c
319 * [Parvatha] modification in pi_create_encode for tile part generation.Modification in pi.c
320 + [Parvatha] In tcd_rateallocate a variable stable_threshold which holds the valid threshold value. 
321                          This is used to avoid error in case of a wrong threshold value in the last iteration. Modification in tcd.c.
322
323 March 28, 2007
324 * [FOD] Fixed an historical bug in t1.c that leaded to the inclusion of useless 0xFF in the codestream. Thanks to Sylvain, Pascal and Parvatha !
325
326 March 27, 2007
327 + [GB] Improved parsing in OPJViewer, as well some minor aesthetic modifications; support for image rendering with bit depths lower than 8 bits; 
328                 can display an arbitrary frame of an MJ2 file (only in B/W, though); can reload a file; better resizing capabilities
329 * [GB] Following to Herv�'s suggestions, all the exit() calls, added by JPWL strict checking in t2.c and j2k.c, 
330                 have been substituted with (object free'ing + opj_evt_message(EVT_ERROR) + return)
331 + [GB] Added linking to TIFF library in the JPWL VC6 workspaces
332
333 March 23, 2007
334 * [antonin] Fixed Makefile.osx and changed Readme.osx accordingly
335
336 March 21, 2007
337 * [Parvatha] Fixed j2k_prog_order_list[]. Modifications in j2k.c.
338 * [Parvatha] Fixed t1_decode_cblks. Modifications in t1.c.
339
340 March 20, 2007
341 + [Parvatha] Added feature for generation of tile parts. Modifications in image_to_j2k.c, openjpeg.c, j2k.c, pi.c
342 + [Parvatha] Added function j2k_write_tlm(),to generate TLM marker for a Digital cinema compliant codestream. Modifications in j2k.c.
343
344 March 14, 2007
345 * [FOD] Fixed linux makefile, with help from David Fries and Guido
346
347 March 7, 2007
348 + [Parvatha] Added option for Digital cinema profile compliant codestream. This can be chosen by "-cinema2K" or "-cinema4K" for a 2K and 4K compliance respectively. The feature for tileparts has not been implemented in this version. Modification in image_to_j2k.c
349 + [Parvatha] Added the Digital Cinema profiles (CINEMA2K and CINEMA4K) to the list of profiles recognized in the codestream SIZ marker segment. Modification in openjpeg.h,j2k.c
350 + [Parvatha] Added feature for constant quality within bitrate defined in Digital cinema standards. Modification in tcd.c
351 ! [Parvatha] Modified the method of generation of buffer length. Modification in cio.c
352  
353
354 March 1, 2007
355 * [FOD] Modified codec projects (*.dsp) and makefile to include the tiff library (modified codec/image_to_j2k.dsp codec/j2k_to_image.dsp and codec/makefile)
356 + [GB] Zoom capability and decoder settings dialog in OPJViewer; modified JPWL library .dsp project in order to create a library with embedded JPWL functions
357
358 February 28, 2007
359 + [Parvatha] Enabled compression of TIF image format to j2k by tifftoimage() and decompression of codestream to TIF image format using imagetotif(). Modifications in image_to_j2k.c, j2k_to_image.c, convert.c, convert.h
360 * [antonin] fixed a bug in context numerotation that prevented the RESET switch to work correctly : mqc_reset_enc in mqc.c
361 * [Fod] Corrected codec Makefile by adding the compilation of "compat/getopt.c" 
362
363 February 27, 2007
364 * [Parvatha] Made get_file_format function more robust. Modifications in image_to_j2k.c, j2k_to_image.c, getopt.c, getopt.h
365
366 February 26, 2007
367 + [Parvatha] Option to read images from a Folder whose path is specified in the Input parameters by "-ImgDir" along with output decod format specified by "-OutFor" . Modifications in image_to_j2k.c, j2k_to_image.c, getopt.c, getopt.h
368 + [Parvatha] Enabling use of multi character input parameters in the codec. Modifications in image_to_j2k.c, j2k_to_image.c, getopt.c, getopt.h
369
370 ----------------------
371 February 23, 2007
372 VERSION 1.1.1 RELEASED
373 ----------------------
374
375 February 23, 2007
376 * [GB] Fixed a copy-and-paste type assignment error (bool instead of int) in the JPWL section of decoder parameters structure in openjpeg.h; minor type-casting in jpwl_lib.c. 
377                 As a result, now OPJViewer should run correctly when built against the most current SVN trunk of LibOpenJPEG.lib
378 + [GB] Linux makefile for the JPWL module; newlines at end of JPWL files
379
380 February 22, 2007
381 + [FOD] Added the OPJViewer Module (/OPJViewer), developed by Giuseppe Baruffa of the university of Perugia
382
383 February 21, 2007
384 + [FOD] Algorithmic optimizations in t1.c, thanks to Guido J. !
385
386 February 19, 2007
387 + [FOD] Added OPJ_LIMIT_DECODING enabling us to limit the decoding to main header (modified openjpeg.c, openjpeg.h, j2k.c and j2k.h)
388
389 February 13, 2007
390 ! [FOD] David Fries suggestions. In image_to_j2k and j2k_to_image, strncpy() functions: instead of specifying the path size macro, let the compiler read the length out of the array entry.
391 ! [FOD] David Fries suggestions. Makefile modified. -fPIC flag used for 64-bit compilation. Move operation (rather than copy) for the dist library creation, and -p flag added.
392
393 January 31, 2007
394 ! [FOD] Extra tokens at the end of #endif directive corrected in openjpeg.c, j2k.c and image_to_j2k.c -&gt; no more warnings in linux compilation
395 ! [FOD] Linux Makefile added for the codec
396
397 January 30, 2007
398 ! [FOD] Use of OPJ_PATH_LEN (defined as 4096) to be the maximum allowed size for filenames instead of MAX_PATH which is not always defined. This caused some programs using OpenJPEG to crash. Modifications in openjpeg.h j2k_to_image.c and image_to_j2k.c
399 ! [FOD] Correction of the syntax usage in MJ2_codec/mj2_to_frames.c
400
401 January 23, 2007
402 ! [FOD] Modification in the context numbers, to reflect what has been specified in standard, in libopenjpeg/t1.h
403
404 December 07, 2006
405 + [Giuseppe Baruffa] Antonin verified that the MacOS build suffered from a missing definition of the "min" macro; I've added this definition (properly #ifndef'ed) into both jpwl.h and rs.h
406
407 December 05, 2006
408 * [Giuseppe Baruffa] Better fix of the TPH EPBs bug in JPWL module
409 * [GB] Fixed the UEP bug in JPWL module; now, during a UEP specification, RS protection or CRC check can be switched off for selected range of packets, and consequently reswitched on without confusing the decoder
410 + [GB] Added some lines in the help of JPWL_image_to_j2k, specifying that when using error protection on data packets, this must be paired with header protection, i.e. there cannot be packet protection without header protection
411
412 December 04, 2006
413
414 + [Francois-Olivier Devaux] New tag: version1.0 (includes codec and libopenjpeg directories)
415 Total update of JPWL module
416     - [FOD] removed directories jpwl/decoder, jpwl/encoder, jpwl/decoder_02, jpwl/encoder_02
417     + [FOD] added in JPWL directory crc.h, jpwl.h, rs.h, crc.c, jpwl.c, jpwl_lib.c, rs.c, JPWL_image_to_j2k.dsp, JPWL_j2k_to_image.dsp, LibOpenJPEG_JPWL.dsp, JPWL_image_to_j2k.dsw, JPWL_j2k_to_image.dsw
418     ! [FOD] Modifications of libopenjpeg to integrate JPWL module (in libopenjpeg directory): j2k.c, j2k.h, openjpeg.c, openjpeg.h, opj_includes.g, t2.c
419     ! [FOD] Modification of codec to integrate JPWL module (in codec directory): image_to_j2k.c, j2k_to_image.c
420 * [FOD] Corrected incorrect fprintf() formatting in codec/convert.c
421 * [FOD] Code optimization usinq vsprintf() command in libopenjpeg/event.c
422 * [Giuseppe Baruffa] Fixed a bug in TPH EPBs parameters: now, "last in current header" information is correctly signaled
423
424 October 31, 2006
425 * [Antonin] fixed a bug in the computation of the mantissa (mu)
426 + [Antonin] added the ability to specify the rate as "float" (before : integer)
427
428 August 18, 2006
429 * [Antonin] fixed a bug in j2k_to_image.c, that prevented the -l option to work correctly.
430
431 August 4, 2006
432 * [Antonin] fixed a bug in pi.c, line 473, that appeared when more than 100 precincts were generated in a resolution level.
433
434 July 28, 2006
435 + [Antonin Descampe] added a readme in /mj2 to warn people that it only works with opj0.97
436
437 July 21, 2006
438 * [Mathieu Malaterre] Install exe and lib and include correctly
439 * [Mathieu Malaterre] Fixed mem leaks and greyscale bmp
440 * [Mathieu Malaterre] Fix pgx name length + random memory access
441 ! [Mathieu Malaterre] API is now const
442
443 March 19, 2006
444 * [Antonin] fixed a bug in t1.c that prevented in some cases a true lossless compression (thanks to Don Mimlitch for reporting this bug)
445
446 February 12, 2006
447 - [Herve Drolon] removed unneeded working variables in opj_tcd_t
448
449 February 04, 2006
450 * [galt] fixed a bug in codec/convert.c::imagetobmp
451
452 February 01, 2006
453 ! [Herve Drolon] changed function definitions of INT and FIX modules to 'inline'
454 + [Herve Drolon] added a VERSION resource to the DLL version of OpenJPEG
455
456 January 31, 2006
457 * [Mathieu Malaterre] Fix compilation using default openjpeg.dsw
458 * [Herve Drolon] fixed various minor warnings occuring under icc9 and bcc32
459 - [Mathieu Malaterre] Remove all references to OPJ_EXPORT, no declspec in header file anymore
460 + [Mathieu Malaterre] Add a def.in file which is a template for Module Definition
461 + [Herve Drolon] added MSVC project and compiler directives to build a 'standard' WIN32 DLL
462 ! [Mathieu Malaterre] Update CMake to match the new shared lib system (no more def file)
463
464 January 27, 2006
465 * [Antonin Descampe] fixed a two initialization problems in t1.c and tcd.c
466
467 January 26, 2006
468 * [Herve Drolon] fixed various minor warnings occuring under gcc
469 * [__david__] fixed a segfault in codec/image_to_j2k.c &amp; codec/j2k_to_image.c
470 * [__david__] fixed help option in codec/j2k_to_image &amp; codec/image_to_j2k
471
472 January 25, 2006
473 ! [Mathieu Malaterre] Sync with ITK repository, also add ref to doxygen
474 ! [Mathieu Malaterre] Add a lot of comments on the CMake build system
475 ! [Mathieu Malaterre] Fix MINGW32 and BORLAND compilation problems.
476
477 January 25, 2006
478 * [Antonin Descampe] fixed a problem in convert.c when multiple comments
479 + [Antonin Descampe] added cmake files to the project
480 ! [Antonin Descampe] fix.c : replaced "WIN32" by "_MSC_VER" for int64
481 + [Antonin Descampe] added "OPJ_EXPORT" in openjpeg.h to generate shared lib with win32
482 ! [Antonin Descampe] removed all CtrlM from files
483
484 January 24, 2006
485 ! [Antonin Descampe] event.c : replaced "WIN32" by "_MSC_VER" for i2a
486
487 January 20, 2006
488 * [Antonin Descampe] fixed various minor warnings with gdcm patches
489
490 January 19, 2006
491 * [Herve Drolon] fixed a bug in jp2_read_ihdr (need to allocate jp2-&gt;comps)
492
493 January 18, 2006
494 * [Herve Drolon] changed the name of j2k_realloc to opj_realloc
495 * [Herve Drolon] fixed a bug in opj_cio_open when saving 48-bit images (wrong buffer size calculation)
496
497 December 8, 2005
498 * [Antonin Descampe] fixed a bug when specifying a rate '-r' =&gt; no distortion info was available in the index
499 * [Antonin Descampe] fixed a bug in t1_getwmsedec (stepsize was divided by 8192)
500
501 December 5, 2005 - 1.1.0
502 </pre></div>
503
504 </body>
505 </html>