diff --git a/CHANGES b/CHANGES index 2c6831cf..166911c3 100644 --- a/CHANGES +++ b/CHANGES @@ -6,6 +6,7 @@ What's New for OpenJPEG + : added November 8, 2011 ++ [mickael] WIP: clean and enhance j2K file + [mickael] WIP: clean and enhance openjpeg.c + [mickael] WIP: clean and enhance openjpeg.h and add deprecated macro diff --git a/libopenjpeg/j2k.c b/libopenjpeg/j2k.c index fcb309ab..111e8c71 100644 --- a/libopenjpeg/j2k.c +++ b/libopenjpeg/j2k.c @@ -5,8 +5,10 @@ * Copyright (c) 2002-2003, Yannick Verschueren * Copyright (c) 2003-2007, Francois-Olivier Devaux and Antonin Descampe * Copyright (c) 2005, Herve Drolon, FreeImage Team + * Copyright (c) 2008, Jerome Fimes, Communications & Systemes * Copyright (c) 2006-2007, Parvatha Elangovan * Copyright (c) 2010-2011, Kaori Hagihara + * Copyright (c) 2011, Mickael Savinaud, Communications & Systemes * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/libopenjpeg/j2k.h b/libopenjpeg/j2k.h index 7aee59ab..d5fd2bea 100644 --- a/libopenjpeg/j2k.h +++ b/libopenjpeg/j2k.h @@ -6,6 +6,9 @@ * Copyright (c) 2003-2007, Francois-Olivier Devaux and Antonin Descampe * Copyright (c) 2005, Herve Drolon, FreeImage Team * Copyright (c) 2006-2007, Parvatha Elangovan + * Copyright (c) 2008, Jerome Fimes, Communications & Systemes + * Copyright (c) 2011, Mickael Savinaud, Communications & Systemes + * * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -97,15 +100,12 @@ The functions in J2K.C have for goal to read/write the several parts of the code #endif /* USE_JPSEC */ /* < there was a PPT marker for the present tile */ OPJ_UINT32 ppt : 1; @@ -363,7 +332,7 @@ typedef struct opj_tcp_v2 -/** +/** V1 STYLE Coding parameters */ typedef struct opj_cp { @@ -507,8 +476,8 @@ opj_decoding_param_t; /** -Coding parameters -*/ + * Coding parameters + */ typedef struct opj_cp_v2 { /** Size of the image in bits*/ @@ -530,9 +499,6 @@ typedef struct opj_cp_v2 /** number of tiles in heigth */ OPJ_UINT32 th; - - - /** packet header store there for futur use in t2_decode_packet */ OPJ_BYTE *ppm_data; /** size of the ppm_data*/ @@ -795,9 +761,6 @@ typedef struct opj_j2k_v2 /** the current tile coder/decoder **/ struct opj_tcd_v2 * m_tcd; - //opj_tcd_v2_t * m_tcd; - - } opj_j2k_v2_t;