[trunk] fix warnings when printing large integers
[openjpeg.git] / libopenjpeg / j2k.c
index e705441d86d517e5621450980361bfd17ddf8d04..660e91b09bc7072e27957de48b14f5598800175c 100644 (file)
@@ -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 <jerome.fimes@c-s.fr>
  * Copyright (c) 2006-2007, Parvatha Elangovan
  * Copyright (c) 2010-2011, Kaori Hagihara
+ * Copyright (c) 2011, Mickael Savinaud, Communications & Systemes <mickael.savinaud@c-s.fr>
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
@@ -103,11 +105,9 @@ static opj_bool j2k_exec (
  * Copies the decoding tile parameters onto all the tile parameters.
  * Creates also the tile decoder.
  */
-opj_bool j2k_copy_default_tcp_and_create_tcd(
-                                               opj_j2k_v2_t * p_j2k,
-                                               opj_stream_private_t *p_stream,
-                                               opj_event_mgr_t * p_manager
-                                               );
+opj_bool j2k_copy_default_tcp_and_create_tcd ( opj_j2k_v2_t * p_j2k,
+                                                                                               opj_stream_private_t *p_stream,
+                                                                                               opj_event_mgr_t * p_manager );
 
 /**
  * Reads the lookup table containing all the marker, status and action, and returns the handler associated
@@ -125,6 +125,13 @@ static const struct opj_dec_memory_marker_handler * j2k_get_marker_handler (OPJ_
  */
 static void j2k_tcp_destroy (opj_tcp_v2_t *p_tcp);
 
+/**
+ * Destroys the data inside a tile coding parameter structure.
+ *
+ * @param      p_tcp           the tile coding parameter which contain data to destroy.
+ */
+static void j2k_tcp_data_destroy (opj_tcp_v2_t *p_tcp);
+
 /**
  * Destroys a coding parameter structure.
  *
@@ -185,6 +192,16 @@ static void j2k_copy_tile_quantization_parameters(
                                                        opj_j2k_v2_t *p_j2k
                                                        );
 
+/**
+ * Reads the tiles.
+ */
+opj_bool j2k_decode_tiles (            opj_j2k_v2_t *p_j2k,
+                                                               opj_stream_private_t *p_stream,
+                                                               opj_event_mgr_t * p_manager);
+
+static opj_bool j2k_update_image_data (opj_tcd_v2_t * p_tcd, OPJ_BYTE * p_data, opj_image_t* p_output_image);
+
+
 /*
  * -----------------------------------------------------------------------
  * -----------------------------------------------------------------------
@@ -657,6 +674,8 @@ Add main header marker information
 @param len length of marker segment
  */
 static void j2k_add_mhmarker(opj_codestream_info_t *cstr_info, unsigned short int type, int pos, int len);
+
+static void j2k_add_mhmarker_v2(opj_codestream_index_t *cstr_index, OPJ_UINT32 type, OPJ_OFF_T pos, OPJ_UINT32 len) ;
 /**
 Add tile header marker information
 @param tileno tile index number
@@ -667,11 +686,12 @@ Add tile header marker information
  */
 static void j2k_add_tlmarker( int tileno, opj_codestream_info_t *cstr_info, unsigned short int type, int pos, int len);
 
+static void j2k_add_tlmarker_v2(OPJ_UINT32 tileno, opj_codestream_index_t *cstr_index, OPJ_UINT32 type, OPJ_OFF_T pos, OPJ_UINT32 len);
 
 /**
  * Reads an unknown marker
  *
- * @param      p_stream                                the stream object to read from.
+ * @param      p_stream                the stream object to read from.
  * @param      p_j2k                   the jpeg2000 codec.
  * @param      p_manager               the user event manager.
  *
@@ -679,8 +699,84 @@ static void j2k_add_tlmarker( int tileno, opj_codestream_info_t *cstr_info, unsi
 */
 static opj_bool j2k_read_unk_v2 (      opj_j2k_v2_t *p_j2k,
                                                                        struct opj_stream_private *p_stream,
+                                                                       OPJ_UINT32 *output_marker,
                                                                        struct opj_event_mgr * p_manager );
 
+/**
+ * Reads a MCT marker (Multiple Component Transform)
+ *
+ * @param      p_header_data   the data contained in the MCT box.
+ * @param      p_j2k                   the jpeg2000 codec.
+ * @param      p_header_size   the size of the data contained in the MCT marker.
+ * @param      p_manager               the user event manager.
+*/
+static opj_bool j2k_read_mct ( opj_j2k_v2_t *p_j2k,
+                                                               OPJ_BYTE * p_header_data,
+                                                               OPJ_UINT32 p_header_size,
+                                                               struct opj_event_mgr * p_manager );
+
+/**
+ * Reads a MCC marker (Multiple Component Collection)
+ *
+ * @param      p_header_data   the data contained in the MCC box.
+ * @param      p_j2k                   the jpeg2000 codec.
+ * @param      p_header_size   the size of the data contained in the MCC marker.
+ * @param      p_manager               the user event manager.
+*/
+static opj_bool j2k_read_mcc ( opj_j2k_v2_t *p_j2k,
+                                                       OPJ_BYTE * p_header_data,
+                                                       OPJ_UINT32 p_header_size,
+                                                       struct opj_event_mgr * p_manager );
+
+/**
+ * Reads a MCO marker (Multiple Component Transform Ordering)
+ *
+ * @param      p_header_data   the data contained in the MCO box.
+ * @param      p_j2k                   the jpeg2000 codec.
+ * @param      p_header_size   the size of the data contained in the MCO marker.
+ * @param      p_manager               the user event manager.
+*/
+static opj_bool j2k_read_mco ( opj_j2k_v2_t *p_j2k,
+                                                               OPJ_BYTE * p_header_data,
+                                                               OPJ_UINT32 p_header_size,
+                                                               struct opj_event_mgr * p_manager );
+
+static opj_bool j2k_add_mct(opj_tcp_v2_t * p_tcp, opj_image_t * p_image, OPJ_UINT32 p_index);
+
+static void  j2k_read_int16_to_float (const void * p_src_data, void * p_dest_data, OPJ_UINT32 p_nb_elem);
+static void  j2k_read_int32_to_float (const void * p_src_data, void * p_dest_data, OPJ_UINT32 p_nb_elem);
+static void  j2k_read_float32_to_float (const void * p_src_data, void * p_dest_data, OPJ_UINT32 p_nb_elem);
+static void  j2k_read_float64_to_float (const void * p_src_data, void * p_dest_data, OPJ_UINT32 p_nb_elem);
+
+static void  j2k_read_int16_to_int32 (const void * p_src_data, void * p_dest_data, OPJ_UINT32 p_nb_elem);
+static void  j2k_read_int32_to_int32 (const void * p_src_data, void * p_dest_data, OPJ_UINT32 p_nb_elem);
+static void  j2k_read_float32_to_int32 (const void * p_src_data, void * p_dest_data, OPJ_UINT32 p_nb_elem);
+static void  j2k_read_float64_to_int32 (const void * p_src_data, void * p_dest_data, OPJ_UINT32 p_nb_elem);
+
+static void  j2k_write_float_to_int16 (const void * p_src_data, void * p_dest_data, OPJ_UINT32 p_nb_elem);
+static void  j2k_write_float_to_int32 (const void * p_src_data, void * p_dest_data, OPJ_UINT32 p_nb_elem);
+static void  j2k_write_float_to_float (const void * p_src_data, void * p_dest_data, OPJ_UINT32 p_nb_elem);
+static void  j2k_write_float_to_float64 (const void * p_src_data, void * p_dest_data, OPJ_UINT32 p_nb_elem);
+
+/**
+ * Reads a CBD marker (Component bit depth definition)
+ * @param      p_header_data   the data contained in the CBD box.
+ * @param      p_j2k                   the jpeg2000 codec.
+ * @param      p_header_size   the size of the data contained in the CBD marker.
+ * @param      p_manager               the user event manager.
+*/
+static opj_bool j2k_read_cbd ( opj_j2k_v2_t *p_j2k,
+                                                       OPJ_BYTE * p_header_data,
+                                                       OPJ_UINT32 p_header_size,
+                                                       struct opj_event_mgr * p_manager);
+
+
+static void j2k_dump_MH_info(opj_j2k_v2_t* p_j2k, FILE* out_stream);
+
+static void j2k_dump_MH_index(opj_j2k_v2_t* p_j2k, FILE* out_stream);
+
+static opj_codestream_index_t* j2k_create_cstr_index(void);
+
 /*@}*/
 
 /*@}*/
@@ -700,6 +796,45 @@ j2k_prog_order_t j2k_prog_order_list[] = {
        {(OPJ_PROG_ORDER)-1, ""}
 };
 
+
+
+/**
+ * FIXME DOC
+ */
+const OPJ_UINT32 MCT_ELEMENT_SIZE [] =
+{
+       2,
+       4,
+       4,
+       8
+};
+
+typedef void (* j2k_mct_function) (const void * p_src_data, void * p_dest_data, OPJ_UINT32 p_nb_elem);
+
+const j2k_mct_function j2k_mct_read_functions_to_float [] =
+{
+       j2k_read_int16_to_float,
+       j2k_read_int32_to_float,
+       j2k_read_float32_to_float,
+       j2k_read_float64_to_float
+};
+
+const j2k_mct_function j2k_mct_read_functions_to_int32 [] =
+{
+       j2k_read_int16_to_int32,
+       j2k_read_int32_to_int32,
+       j2k_read_float32_to_int32,
+       j2k_read_float64_to_int32
+};
+
+const j2k_mct_function j2k_mct_write_functions_from_float [] =
+{
+       j2k_write_float_to_int16,
+       j2k_write_float_to_int32,
+       j2k_write_float_to_float,
+       j2k_write_float_to_float64
+};
+
 typedef struct opj_dec_memory_marker_handler
 {
        /** marker value */
@@ -756,32 +891,232 @@ const opj_dec_memory_marker_handler_t j2k_memory_marker_handler_tab [] =
   {J2K_MS_SOP, 0, 0},
   {J2K_MS_CRG, J2K_STATE_MH, j2k_read_crg_v2},
   {J2K_MS_COM, J2K_STATE_MH | J2K_STATE_TPH, j2k_read_com_v2},
-  {J2K_MS_UNK, J2K_STATE_MH | J2K_STATE_TPH, 0}//j2k_read_unk_v2}
-#ifdef TODO_MS
   {J2K_MS_MCT, J2K_STATE_MH | J2K_STATE_TPH, j2k_read_mct},
   {J2K_MS_CBD, J2K_STATE_MH , j2k_read_cbd},
   {J2K_MS_MCC, J2K_STATE_MH | J2K_STATE_TPH, j2k_read_mcc},
   {J2K_MS_MCO, J2K_STATE_MH | J2K_STATE_TPH, j2k_read_mco},
-#endif
 #ifdef USE_JPWL
-  {J2K_MS_EPC, J2K_DEC_STATE_MH | J2K_DEC_STATE_TPH, j2k_read_epc},
-  {J2K_MS_EPB, J2K_DEC_STATE_MH | J2K_DEC_STATE_TPH, j2k_read_epb},
-  {J2K_MS_ESD, J2K_DEC_STATE_MH | J2K_DEC_STATE_TPH, j2k_read_esd},
-  {J2K_MS_RED, J2K_DEC_STATE_MH | J2K_DEC_STATE_TPH, j2k_read_red},
+#ifdef TODO_MS /* FIXME */
+  {J2K_MS_EPC, J2K_STATE_MH | J2K_STATE_TPH, j2k_read_epc},
+  {J2K_MS_EPB, J2K_STATE_MH | J2K_STATE_TPH, j2k_read_epb},
+  {J2K_MS_ESD, J2K_STATE_MH | J2K_STATE_TPH, j2k_read_esd},
+  {J2K_MS_RED, J2K_STATE_MH | J2K_STATE_TPH, j2k_read_red},
+#endif
 #endif /* USE_JPWL */
 #ifdef USE_JPSEC
   {J2K_MS_SEC, J2K_DEC_STATE_MH, j2k_read_sec},
   {J2K_MS_INSEC, 0, j2k_read_insec}
 #endif /* USE_JPSEC */
+  {J2K_MS_UNK, J2K_STATE_MH | J2K_STATE_TPH, 0}//j2k_read_unk_v2}
 };
 
 
 
+void  j2k_read_int16_to_float (const void * p_src_data, void * p_dest_data, OPJ_UINT32 p_nb_elem)
+{
+       OPJ_BYTE * l_src_data = (OPJ_BYTE *) p_src_data;
+       OPJ_FLOAT32 * l_dest_data = (OPJ_FLOAT32 *) p_dest_data;
+       OPJ_UINT32 i;
+       OPJ_UINT32 l_temp;
+
+       for (i=0;i<p_nb_elem;++i) {
+               opj_read_bytes(l_src_data,&l_temp,2);
+
+               l_src_data+=sizeof(OPJ_INT16);
+
+               *(l_dest_data++) = (OPJ_FLOAT32) l_temp;
+       }
+}
+
+void  j2k_read_int32_to_float (const void * p_src_data, void * p_dest_data, OPJ_UINT32 p_nb_elem)
+{
+       OPJ_BYTE * l_src_data = (OPJ_BYTE *) p_src_data;
+       OPJ_FLOAT32 * l_dest_data = (OPJ_FLOAT32 *) p_dest_data;
+       OPJ_UINT32 i;
+       OPJ_UINT32 l_temp;
+
+       for (i=0;i<p_nb_elem;++i) {
+               opj_read_bytes(l_src_data,&l_temp,4);
+
+               l_src_data+=sizeof(OPJ_INT32);
+
+               *(l_dest_data++) = (OPJ_FLOAT32) l_temp;
+       }
+}
+
+void  j2k_read_float32_to_float (const void * p_src_data, void * p_dest_data, OPJ_UINT32 p_nb_elem)
+{
+       OPJ_BYTE * l_src_data = (OPJ_BYTE *) p_src_data;
+       OPJ_FLOAT32 * l_dest_data = (OPJ_FLOAT32 *) p_dest_data;
+       OPJ_UINT32 i;
+       OPJ_FLOAT32 l_temp;
+
+       for (i=0;i<p_nb_elem;++i) {
+               opj_read_float(l_src_data,&l_temp);
+
+               l_src_data+=sizeof(OPJ_FLOAT32);
+
+               *(l_dest_data++) = l_temp;
+       }
+}
+
+void  j2k_read_float64_to_float (const void * p_src_data, void * p_dest_data, OPJ_UINT32 p_nb_elem)
+{
+       OPJ_BYTE * l_src_data = (OPJ_BYTE *) p_src_data;
+       OPJ_FLOAT32 * l_dest_data = (OPJ_FLOAT32 *) p_dest_data;
+       OPJ_UINT32 i;
+       OPJ_FLOAT64 l_temp;
+
+       for (i=0;i<p_nb_elem;++i) {
+               opj_read_double(l_src_data,&l_temp);
+
+               l_src_data+=sizeof(OPJ_FLOAT64);
+
+               *(l_dest_data++) = (OPJ_FLOAT32) l_temp;
+       }
+}
+
+void  j2k_read_int16_to_int32 (const void * p_src_data, void * p_dest_data, OPJ_UINT32 p_nb_elem)
+{
+       OPJ_BYTE * l_src_data = (OPJ_BYTE *) p_src_data;
+       OPJ_INT32 * l_dest_data = (OPJ_INT32 *) p_dest_data;
+       OPJ_UINT32 i;
+       OPJ_UINT32 l_temp;
+
+       for (i=0;i<p_nb_elem;++i) {
+               opj_read_bytes(l_src_data,&l_temp,2);
+
+               l_src_data+=sizeof(OPJ_INT16);
+
+               *(l_dest_data++) = (OPJ_INT32) l_temp;
+       }
+}
+
+void  j2k_read_int32_to_int32 (const void * p_src_data, void * p_dest_data, OPJ_UINT32 p_nb_elem)
+{
+       OPJ_BYTE * l_src_data = (OPJ_BYTE *) p_src_data;
+       OPJ_INT32 * l_dest_data = (OPJ_INT32 *) p_dest_data;
+       OPJ_UINT32 i;
+       OPJ_UINT32 l_temp;
+
+       for (i=0;i<p_nb_elem;++i) {
+               opj_read_bytes(l_src_data,&l_temp,4);
+
+               l_src_data+=sizeof(OPJ_INT32);
+
+               *(l_dest_data++) = (OPJ_INT32) l_temp;
+       }
+}
+
+void  j2k_read_float32_to_int32 (const void * p_src_data, void * p_dest_data, OPJ_UINT32 p_nb_elem)
+{
+       OPJ_BYTE * l_src_data = (OPJ_BYTE *) p_src_data;
+       OPJ_INT32 * l_dest_data = (OPJ_INT32 *) p_dest_data;
+       OPJ_UINT32 i;
+       OPJ_FLOAT32 l_temp;
+
+       for (i=0;i<p_nb_elem;++i) {
+               opj_read_float(l_src_data,&l_temp);
+
+               l_src_data+=sizeof(OPJ_FLOAT32);
+
+               *(l_dest_data++) = (OPJ_INT32) l_temp;
+       }
+}
+
+void  j2k_read_float64_to_int32 (const void * p_src_data, void * p_dest_data, OPJ_UINT32 p_nb_elem)
+{
+       OPJ_BYTE * l_src_data = (OPJ_BYTE *) p_src_data;
+       OPJ_INT32 * l_dest_data = (OPJ_INT32 *) p_dest_data;
+       OPJ_UINT32 i;
+       OPJ_FLOAT64 l_temp;
+
+       for (i=0;i<p_nb_elem;++i) {
+               opj_read_double(l_src_data,&l_temp);
+
+               l_src_data+=sizeof(OPJ_FLOAT64);
+
+               *(l_dest_data++) = (OPJ_INT32) l_temp;
+       }
+}
+
+void  j2k_write_float_to_int16 (const void * p_src_data, void * p_dest_data, OPJ_UINT32 p_nb_elem)
+{
+       OPJ_BYTE * l_dest_data = (OPJ_BYTE *) p_dest_data;
+       OPJ_FLOAT32 * l_src_data = (OPJ_FLOAT32 *) p_src_data;
+       OPJ_UINT32 i;
+       OPJ_UINT32 l_temp;
+
+       for (i=0;i<p_nb_elem;++i) {
+               l_temp = (OPJ_UINT32) *(l_src_data++);
+
+               opj_write_bytes(l_dest_data,l_temp,sizeof(OPJ_INT16));
+
+               l_dest_data+=sizeof(OPJ_INT16);
+       }
+}
+
+void  j2k_write_float_to_int32 (const void * p_src_data, void * p_dest_data, OPJ_UINT32 p_nb_elem)
+{
+       OPJ_BYTE * l_dest_data = (OPJ_BYTE *) p_dest_data;
+       OPJ_FLOAT32 * l_src_data = (OPJ_FLOAT32 *) p_src_data;
+       OPJ_UINT32 i;
+       OPJ_UINT32 l_temp;
+
+       for (i=0;i<p_nb_elem;++i) {
+               l_temp = (OPJ_UINT32) *(l_src_data++);
+
+               opj_write_bytes(l_dest_data,l_temp,sizeof(OPJ_INT32));
+
+               l_dest_data+=sizeof(OPJ_INT32);
+       }
+}
+
+void  j2k_write_float_to_float (const void * p_src_data, void * p_dest_data, OPJ_UINT32 p_nb_elem)
+{
+       OPJ_BYTE * l_dest_data = (OPJ_BYTE *) p_dest_data;
+       OPJ_FLOAT32 * l_src_data = (OPJ_FLOAT32 *) p_src_data;
+       OPJ_UINT32 i;
+       OPJ_FLOAT32 l_temp;
+
+       for (i=0;i<p_nb_elem;++i) {
+               l_temp = (OPJ_FLOAT32) *(l_src_data++);
+
+               opj_write_float(l_dest_data,l_temp);
+
+               l_dest_data+=sizeof(OPJ_FLOAT32);
+       }
+}
+
+void  j2k_write_float_to_float64 (const void * p_src_data, void * p_dest_data, OPJ_UINT32 p_nb_elem)
+{
+       OPJ_BYTE * l_dest_data = (OPJ_BYTE *) p_dest_data;
+       OPJ_FLOAT32 * l_src_data = (OPJ_FLOAT32 *) p_src_data;
+       OPJ_UINT32 i;
+       OPJ_FLOAT64 l_temp;
+
+       for (i=0;i<p_nb_elem;++i) {
+               l_temp = (OPJ_FLOAT64) *(l_src_data++);
+
+               opj_write_double(l_dest_data,l_temp);
+
+               l_dest_data+=sizeof(OPJ_FLOAT64);
+       }
+}
+
+
+/**
+ * Converts an enum type progression order to string type.
+ *
+ * @param prg_order            the progression order to get.
+ *
+ * @return     the string representation of the given progression order.
+ */
 char *j2k_convert_progression_order(OPJ_PROG_ORDER prg_order){
        j2k_prog_order_t *po;
        for(po = j2k_prog_order_list; po->enum_prog != -1; po++ ){
                if(po->enum_prog == prg_order){
-                       break;
+                       return po->str_prog;
                }
        }
        return po->str_prog;
@@ -885,16 +1220,14 @@ static void j2k_read_soc(opj_j2k_t *j2k) {
  * @param      p_header_size   the size of the data contained in the SOC marker.
  * @param      p_manager               the user event manager.
 */
-static opj_bool j2k_read_soc_v2(
-                                       opj_j2k_v2_t *p_j2k,
-                                       struct opj_stream_private *p_stream,
-                                       struct opj_event_mgr * p_manager
-                                )
+static opj_bool j2k_read_soc_v2(       opj_j2k_v2_t *p_j2k,
+                                                                       struct opj_stream_private *p_stream,
+                                                                       struct opj_event_mgr * p_manager )
 {
        OPJ_BYTE l_data [2];
        OPJ_UINT32 l_marker;
 
-       // preconditions
+       /* preconditions */
        assert(p_j2k != 00);
        assert(p_manager != 00);
        assert(p_stream != 00);
@@ -908,14 +1241,16 @@ static opj_bool j2k_read_soc_v2(
                return OPJ_FALSE;
        }
 
-       /* assure length of data is correct (0) */
-       p_j2k->m_specific_param.m_decoder.m_state = J2K_STATE_MHSIZ; // FIXME J2K_DEC_STATE_MHSIZ;
+       /* Next marker should be a SIZ marker in the main header */
+       p_j2k->m_specific_param.m_decoder.m_state = J2K_STATE_MHSIZ;
 
-       /* Index */
-       if (p_j2k->cstr_info) {
-               //TODO p_j2k->cstr_info->main_head_start = opj_stream_tell(p_stream) - 2; // why - 2 ?
-               p_j2k->cstr_info->codestream_size = 0;/*p_stream_numbytesleft(p_j2k->p_stream) + 2 - p_j2k->cstr_info->main_head_start*/;
-       }
+       /* FIXME move it in a index structure included in p_j2k*/
+       p_j2k->cstr_index->main_head_start = opj_stream_tell(p_stream) - 2;
+
+       opj_event_msg_v2(p_manager, EVT_INFO, "Start to read j2k main header (%d).\n", p_j2k->cstr_index->main_head_start);
+
+       /* Add the marker to the codestream index*/
+       j2k_add_mhmarker_v2(p_j2k->cstr_index, J2K_MS_SOC, p_j2k->cstr_index->main_head_start, 2);
 
        return OPJ_TRUE;
 }
@@ -1185,9 +1520,9 @@ opj_bool j2k_read_siz_v2 (
        OPJ_UINT32 l_remaining_size;
        OPJ_UINT32 l_nb_tiles;
        OPJ_UINT32 l_tmp;
-       opj_image_header_t *l_image = 00;
+       opj_image_t *l_image = 00;
        opj_cp_v2_t *l_cp = 00;
-       opj_image_comp_header_t * l_img_comp = 00;
+       opj_image_comp_t * l_img_comp = 00;
        opj_tcp_v2_t * l_current_tile_param = 00;
 
        // preconditions
@@ -1195,7 +1530,7 @@ opj_bool j2k_read_siz_v2 (
        assert(p_manager != 00);
        assert(p_header_data != 00);
 
-       l_image = p_j2k->m_image_header;
+       l_image = p_j2k->m_private_image;
        l_cp = &(p_j2k->m_cp);
 
        // minimum size == 39 - 3 (= minimum component parameter)
@@ -1248,53 +1583,56 @@ opj_bool j2k_read_siz_v2 (
        }
 
 #ifdef USE_JPWL
-       if (p_j2k->m_cp->correct) {
+       if (l_cp->correct) {
                /* if JPWL is on, we check whether TX errors have damaged
                  too much the SIZ parameters */
-               if (!(image->x1 * image->y1)) {
-                       opj_event_msg(p_j2k->cinfo, EVT_ERROR,
+               if (!(l_image->x1 * l_image->y1)) {
+                       opj_event_msg_v2(p_manager, EVT_ERROR,
                                "JPWL: bad image size (%d x %d)\n",
-                               image->x1, image->y1);
+                               l_image->x1, l_image->y1);
                        if (!JPWL_ASSUME || JPWL_ASSUME) {
-                               opj_event_msg(p_j2k->cinfo, EVT_ERROR, "JPWL: giving up\n");
-                               return;
+                               opj_event_msg_v2(p_manager, EVT_ERROR, "JPWL: giving up\n");
+                               return OPJ_FALSE;
                        }
                }
-               if (image->numcomps != ((len - 38) / 3)) {
-                       opj_event_msg(p_j2k->cinfo, JPWL_ASSUME ? EVT_WARNING : EVT_ERROR,
+
+       /* FIXME check previously in the function so why keep this piece of code ? Need by the norm ?
+               if (l_image->numcomps != ((len - 38) / 3)) {
+                       opj_event_msg_v2(p_manager, JPWL_ASSUME ? EVT_WARNING : EVT_ERROR,
                                "JPWL: Csiz is %d => space in SIZ only for %d comps.!!!\n",
-                               image->numcomps, ((len - 38) / 3));
+                               l_image->numcomps, ((len - 38) / 3));
                        if (!JPWL_ASSUME) {
-                               opj_event_msg(p_j2k->cinfo, EVT_ERROR, "JPWL: giving up\n");
-                               return;
+                               opj_event_msg_v2(p_manager, EVT_ERROR, "JPWL: giving up\n");
+                               return OPJ_FALSE;
                        }
-                       /* we try to correct */
-                       opj_event_msg(p_j2k->cinfo, EVT_WARNING, "- trying to adjust this\n");
-                       if (image->numcomps < ((len - 38) / 3)) {
-                               len = 38 + 3 * image->numcomps;
-                               opj_event_msg(p_j2k->cinfo, EVT_WARNING, "- setting Lsiz to %d => HYPOTHESIS!!!\n",
+       */              /* we try to correct */
+       /*              opj_event_msg_v2(p_manager, EVT_WARNING, "- trying to adjust this\n");
+                       if (l_image->numcomps < ((len - 38) / 3)) {
+                               len = 38 + 3 * l_image->numcomps;
+                               opj_event_msg_v2(p_manager, EVT_WARNING, "- setting Lsiz to %d => HYPOTHESIS!!!\n",
                                        len);
                        } else {
-                               image->numcomps = ((len - 38) / 3);
-                               opj_event_msg(p_j2k->cinfo, EVT_WARNING, "- setting Csiz to %d => HYPOTHESIS!!!\n",
-                                       image->numcomps);
+                               l_image->numcomps = ((len - 38) / 3);
+                               opj_event_msg_v2(p_manager, EVT_WARNING, "- setting Csiz to %d => HYPOTHESIS!!!\n",
+                                       l_image->numcomps);
                        }
                }
+       */
 
                /* update components number in the jpwl_exp_comps filed */
-               cp->exp_comps = image->numcomps;
+               l_cp->exp_comps = l_image->numcomps;
        }
 #endif /* USE_JPWL */
 
        // Allocate the resulting image components
-       l_image->comps = (opj_image_comp_header_t*) opj_calloc(l_image->numcomps, sizeof(opj_image_comp_header_t));
+       l_image->comps = (opj_image_comp_t*) opj_calloc(l_image->numcomps, sizeof(opj_image_comp_t));
        if (l_image->comps == 00){
                l_image->numcomps = 0;
                opj_event_msg_v2(p_manager, EVT_ERROR, "Not enough memory to take in charge SIZ marker\n");
                return OPJ_FALSE;
        }
 
-       memset(l_image->comps,0,l_image->numcomps * sizeof(opj_image_comp_header_t));
+       memset(l_image->comps,0,l_image->numcomps * sizeof(opj_image_comp_t));
        l_img_comp = l_image->comps;
 
        // Read the component information
@@ -1312,28 +1650,28 @@ opj_bool j2k_read_siz_v2 (
                l_img_comp->dy = (OPJ_INT32)tmp; // should be between 1 and 255
 
 #ifdef USE_JPWL
-               if (p_j2k->m_cp->correct) {
+               if (l_cp->correct) {
                /* if JPWL is on, we check whether TX errors have damaged
                        too much the SIZ parameters, again */
-                       if (!(image->comps[i].dx * image->comps[i].dy)) {
-                               opj_event_msg(p_j2k->cinfo, JPWL_ASSUME ? EVT_WARNING : EVT_ERROR,
+                       if (!(l_image->comps[i].dx * l_image->comps[i].dy)) {
+                               opj_event_msg_v2(p_manager, JPWL_ASSUME ? EVT_WARNING : EVT_ERROR,
                                        "JPWL: bad XRsiz_%d/YRsiz_%d (%d x %d)\n",
-                                       i, i, image->comps[i].dx, image->comps[i].dy);
+                                       i, i, l_image->comps[i].dx, l_image->comps[i].dy);
                                if (!JPWL_ASSUME) {
-                                       opj_event_msg(p_j2k->cinfo, EVT_ERROR, "JPWL: giving up\n");
-                                       return;
+                                       opj_event_msg_v2(p_manager, EVT_ERROR, "JPWL: giving up\n");
+                                       return OPJ_FALSE;
                                }
                                /* we try to correct */
-                               opj_event_msg(p_j2k->cinfo, EVT_WARNING, "- trying to adjust them\n");
-                               if (!image->comps[i].dx) {
-                                       image->comps[i].dx = 1;
-                                       opj_event_msg(p_j2k->cinfo, EVT_WARNING, "- setting XRsiz_%d to %d => HYPOTHESIS!!!\n",
-                                               i, image->comps[i].dx);
+                               opj_event_msg_v2(p_manager, EVT_WARNING, "- trying to adjust them\n");
+                               if (!l_image->comps[i].dx) {
+                                       l_image->comps[i].dx = 1;
+                                       opj_event_msg_v2(p_manager, EVT_WARNING, "- setting XRsiz_%d to %d => HYPOTHESIS!!!\n",
+                                               i, l_image->comps[i].dx);
                                }
-                               if (!image->comps[i].dy) {
-                                       image->comps[i].dy = 1;
-                                       opj_event_msg(p_j2k->cinfo, EVT_WARNING, "- setting YRsiz_%d to %d => HYPOTHESIS!!!\n",
-                                               i, image->comps[i].dy);
+                               if (!l_image->comps[i].dy) {
+                                       l_image->comps[i].dy = 1;
+                                       opj_event_msg_v2(p_manager, EVT_WARNING, "- setting YRsiz_%d to %d => HYPOTHESIS!!!\n",
+                                               i, l_image->comps[i].dy);
                                }
                        }
                }
@@ -1363,40 +1701,40 @@ opj_bool j2k_read_siz_v2 (
        }
 
 #ifdef USE_JPWL
-       if (p_j2k->m_cp->correct) {
+       if (l_cp->correct) {
                /* if JPWL is on, we check whether TX errors have damaged
                  too much the SIZ parameters */
-               if ((cp->tw < 1) || (cp->th < 1) || (cp->tw > cp->max_tiles) || (cp->th > cp->max_tiles)) {
-                       opj_event_msg(p_j2k->cinfo, JPWL_ASSUME ? EVT_WARNING : EVT_ERROR,
+               if ((l_cp->tw < 1) || (l_cp->th < 1) || (l_cp->tw > l_cp->max_tiles) || (l_cp->th > l_cp->max_tiles)) {
+                       opj_event_msg_v2(p_manager, JPWL_ASSUME ? EVT_WARNING : EVT_ERROR,
                                "JPWL: bad number of tiles (%d x %d)\n",
-                               cp->tw, cp->th);
+                               l_cp->tw, l_cp->th);
                        if (!JPWL_ASSUME) {
-                               opj_event_msg(p_j2k->cinfo, EVT_ERROR, "JPWL: giving up\n");
-                               return;
+                               opj_event_msg_v2(p_manager, EVT_ERROR, "JPWL: giving up\n");
+                               return OPJ_FALSE;
                        }
                        /* we try to correct */
-                       opj_event_msg(p_j2k->cinfo, EVT_WARNING, "- trying to adjust them\n");
-                       if (cp->tw < 1) {
-                               cp->tw= 1;
-                               opj_event_msg(p_j2k->cinfo, EVT_WARNING, "- setting %d tiles in x => HYPOTHESIS!!!\n",
-                                       cp->tw);
+                       opj_event_msg_v2(p_manager, EVT_WARNING, "- trying to adjust them\n");
+                       if (l_cp->tw < 1) {
+                               l_cp->tw= 1;
+                               opj_event_msg_v2(p_manager, EVT_WARNING, "- setting %d tiles in x => HYPOTHESIS!!!\n",
+                                               l_cp->tw);
                        }
-                       if (cp->tw > cp->max_tiles) {
-                               cp->tw= 1;
-                               opj_event_msg(p_j2k->cinfo, EVT_WARNING, "- too large x, increase expectance of %d\n"
+                       if (l_cp->tw > l_cp->max_tiles) {
+                               l_cp->tw= 1;
+                               opj_event_msg_v2(p_manager, EVT_WARNING, "- too large x, increase expectance of %d\n"
                                        "- setting %d tiles in x => HYPOTHESIS!!!\n",
-                                       cp->max_tiles, cp->tw);
+                                       l_cp->max_tiles, l_cp->tw);
                        }
-                       if (cp->th < 1) {
-                               cp->th= 1;
-                               opj_event_msg(p_j2k->cinfo, EVT_WARNING, "- setting %d tiles in y => HYPOTHESIS!!!\n",
-                                       cp->th);
+                       if (l_cp->th < 1) {
+                               l_cp->th= 1;
+                               opj_event_msg_v2(p_manager, EVT_WARNING, "- setting %d tiles in y => HYPOTHESIS!!!\n",
+                                               l_cp->th);
                        }
-                       if (cp->th > cp->max_tiles) {
-                               cp->th= 1;
-                               opj_event_msg(p_j2k->cinfo, EVT_WARNING, "- too large y, increase expectance of %d to continue\n",
+                       if (l_cp->th > l_cp->max_tiles) {
+                               l_cp->th= 1;
+                               opj_event_msg_v2(p_manager, EVT_WARNING, "- too large y, increase expectance of %d to continue\n",
                                        "- setting %d tiles in y => HYPOTHESIS!!!\n",
-                                       cp->max_tiles, cp->th);
+                                       l_cp->max_tiles, l_cp->th);
                        }
                }
        }
@@ -1411,13 +1749,13 @@ opj_bool j2k_read_siz_v2 (
        memset(l_cp->tcps,0,l_nb_tiles*sizeof(opj_tcp_t));
 
 #ifdef USE_JPWL
-       if (p_j2k->m_cp->correct) {
-               if (!cp->tcps) {
-                       opj_event_msg(p_j2k->cinfo, JPWL_ASSUME ? EVT_WARNING : EVT_ERROR,
+       if (l_cp->correct) {
+               if (!l_cp->tcps) {
+                       opj_event_msg_v2(p_manager, JPWL_ASSUME ? EVT_WARNING : EVT_ERROR,
                                "JPWL: could not alloc tcps field of cp\n");
                        if (!JPWL_ASSUME || JPWL_ASSUME) {
-                               opj_event_msg(p_j2k->cinfo, EVT_ERROR, "JPWL: giving up\n");
-                               return;
+                               opj_event_msg_v2(p_manager, EVT_ERROR, "JPWL: giving up\n");
+                               return OPJ_FALSE;
                        }
                }
        }
@@ -1474,36 +1812,6 @@ opj_bool j2k_read_siz_v2 (
        p_j2k->m_specific_param.m_decoder.m_state =  J2K_STATE_MH; // FIXME J2K_DEC_STATE_MH;
        opj_image_comp_header_update(l_image,l_cp);
 
-       /* Index */
-       if (p_j2k->cstr_info) {
-               int it_tile = 0;
-
-               p_j2k->cstr_info->image_w = l_image->x1 - l_image->x0;
-               p_j2k->cstr_info->image_h = l_image->y1 - l_image->y0;
-               p_j2k->cstr_info->numcomps = l_image->numcomps;
-               p_j2k->cstr_info->tw = l_cp->tw;
-               p_j2k->cstr_info->th = l_cp->th;
-               p_j2k->cstr_info->tdx = l_cp->tdx;
-               p_j2k->cstr_info->tdy = l_cp->tdy;
-               p_j2k->cstr_info->tx0 = l_cp->tx0;
-               p_j2k->cstr_info->ty0 = l_cp->ty0;
-
-               p_j2k->cstr_info->tile = (opj_tile_info_v2_t*) opj_calloc(l_nb_tiles, sizeof(opj_tile_info_v2_t));
-               if (! p_j2k->cstr_info->tile) {
-                       opj_event_msg_v2(p_manager, EVT_ERROR, "Not enough memory [SIZ marker]\n");
-                       return OPJ_FALSE;
-               }
-
-               for (it_tile = 0; it_tile < l_nb_tiles; it_tile++ ) {
-                       p_j2k->cstr_info->tile[it_tile].tccp_info =
-                                       (opj_tccp_info_t*) opj_calloc( l_image->numcomps, sizeof(opj_tccp_info_t));
-                       if (! p_j2k->cstr_info->tile[it_tile].tccp_info) {
-                               opj_event_msg_v2(p_manager, EVT_ERROR, "Not enough memory [SIZ marker]\n");
-                               return OPJ_FALSE;
-                       }
-               }
-       }
-
        return OPJ_TRUE;
 }
 
@@ -1715,18 +2023,18 @@ opj_bool j2k_read_cod_v2 (
        OPJ_UINT32 l_tmp;
        opj_cp_v2_t *l_cp = 00;
        opj_tcp_v2_t *l_tcp = 00;
-       opj_image_header_t *l_image = 00;
+       opj_image_t *l_image = 00;
 
        /* preconditions */
        assert(p_header_data != 00);
        assert(p_j2k != 00);
        assert(p_manager != 00);
 
-       l_image = p_j2k->m_image_header;
+       l_image = p_j2k->m_private_image;
        l_cp = &(p_j2k->m_cp);
 
        /* If we are in the first tile-part header of the current tile */
-       l_tcp = (p_j2k->m_specific_param.m_decoder.m_state == J2K_STATE_TPH) ? /*FIXME J2K_DEC_STATE_TPH)*/
+       l_tcp = (p_j2k->m_specific_param.m_decoder.m_state == J2K_STATE_TPH) ?
                                &l_cp->tcps[p_j2k->m_current_tile_number] :
                                p_j2k->m_specific_param.m_decoder.m_default_tcp;
 
@@ -1770,9 +2078,11 @@ opj_bool j2k_read_cod_v2 (
                return OPJ_FALSE;
        }
 
+       /* Apply the coding style to other components of the current tile or the m_default_tcp*/
        j2k_copy_tile_component_parameters(p_j2k);
 
        /* Index */
+#ifdef WIP_REMOVE_MSD
        if (p_j2k->cstr_info) {
                //opj_codestream_info_t *l_cstr_info = p_j2k->cstr_info;
                p_j2k->cstr_info->prog = l_tcp->prg;
@@ -1782,6 +2092,8 @@ opj_bool j2k_read_cod_v2 (
                        p_j2k->cstr_info->numdecompos[i] = l_tcp->tccps[i].numresolutions - 1;
                }
        }
+#endif
+
        return OPJ_TRUE;
 }
 
@@ -1835,7 +2147,7 @@ opj_bool j2k_read_coc_v2 (
 {
        opj_cp_v2_t *l_cp = NULL;
        opj_tcp_v2_t *l_tcp = NULL;
-       opj_image_header_t *l_image = NULL;
+       opj_image_t *l_image = NULL;
        OPJ_UINT32 l_comp_room;
        OPJ_UINT32 l_comp_no;
 
@@ -1848,7 +2160,7 @@ opj_bool j2k_read_coc_v2 (
        l_tcp = (p_j2k->m_specific_param.m_decoder.m_state == J2K_STATE_TPH ) ? /*FIXME J2K_DEC_STATE_TPH*/
                                &l_cp->tcps[p_j2k->m_current_tile_number] :
                                p_j2k->m_specific_param.m_decoder.m_default_tcp;
-       l_image = p_j2k->m_image_header;
+       l_image = p_j2k->m_private_image;
 
        l_comp_room = l_image->numcomps <= 256 ? 1 : 2;
 
@@ -2025,7 +2337,7 @@ opj_bool j2k_read_qcd_v2 (
                                        struct opj_event_mgr * p_manager
                                        )
 {
-       // preconditions
+       /* preconditions */
        assert(p_header_data != 00);
        assert(p_j2k != 00);
        assert(p_manager != 00);
@@ -2034,10 +2346,13 @@ opj_bool j2k_read_qcd_v2 (
                opj_event_msg_v2(p_manager, EVT_ERROR, "Error reading QCD marker\n");
                return OPJ_FALSE;
        }
+
        if (p_header_size != 0) {
                opj_event_msg_v2(p_manager, EVT_ERROR, "Error reading QCD marker\n");
                return OPJ_FALSE;
        }
+
+       /* Apply the quantization parameters to other components of the current tile or the m_default_tcp */
        j2k_copy_tile_quantization_parameters(p_j2k);
 
        return OPJ_TRUE;
@@ -2103,46 +2418,19 @@ static void j2k_read_qcc(opj_j2k_t *j2k) {
  * @param      p_header_size   the size of the data contained in the QCC marker.
  * @param      p_manager               the user event manager.
 */
-opj_bool j2k_read_qcc_v2(
-                                                       opj_j2k_v2_t *p_j2k,
+opj_bool j2k_read_qcc_v2(      opj_j2k_v2_t *p_j2k,
                                                        OPJ_BYTE * p_header_data,
                                                        OPJ_UINT32 p_header_size,
                                                        struct opj_event_mgr * p_manager)
 {
        OPJ_UINT32 l_num_comp,l_comp_no;
 
-       // preconditions
+       /* preconditions */
        assert(p_header_data != 00);
        assert(p_j2k != 00);
        assert(p_manager != 00);
 
-       l_num_comp = p_j2k->m_image_header->numcomps;
-
-#ifdef USE_JPWL
-       if (p_j2k->m_cp->correct) {
-
-               static OPJ_UINT32 backup_compno = 0;
-
-               /* compno is negative or larger than the number of components!!! */
-               if ((compno < 0) || (compno >= numcomp)) {
-                       opj_event_msg(p_j2k->cinfo, EVT_ERROR,
-                               "JPWL: bad component number in QCC (%d out of a maximum of %d)\n",
-                               compno, numcomp);
-                       if (!JPWL_ASSUME) {
-                               opj_event_msg(p_j2k->cinfo, EVT_ERROR, "JPWL: giving up\n");
-                               return;
-                       }
-                       /* we try to correct */
-                       compno = backup_compno % numcomp;
-                       opj_event_msg(p_j2k->cinfo, EVT_WARNING, "- trying to adjust this\n"
-                               "- setting component number to %d\n",
-                               compno);
-               }
-
-               /* keep your private count of tiles */
-               backup_compno++;
-       };
-#endif /* USE_JPWL */
+       l_num_comp = p_j2k->m_private_image->numcomps;
 
        if (l_num_comp <= 256) {
                if (p_header_size < 1) {
@@ -2163,6 +2451,32 @@ opj_bool j2k_read_qcc_v2(
                p_header_size-=2;
        }
 
+#ifdef USE_JPWL
+       if (p_j2k->m_cp.correct) {
+
+               static OPJ_UINT32 backup_compno = 0;
+
+               /* compno is negative or larger than the number of components!!! */
+               if ((l_comp_no < 0) || (l_comp_no >= l_num_comp)) {
+                       opj_event_msg_v2(p_manager, EVT_ERROR,
+                               "JPWL: bad component number in QCC (%d out of a maximum of %d)\n",
+                               l_comp_no, l_num_comp);
+                       if (!JPWL_ASSUME) {
+                               opj_event_msg_v2(p_manager, EVT_ERROR, "JPWL: giving up\n");
+                               return OPJ_FALSE;
+                       }
+                       /* we try to correct */
+                       l_comp_no = backup_compno % l_num_comp;
+                       opj_event_msg_v2(p_manager, EVT_WARNING, "- trying to adjust this\n"
+                               "- setting component number to %d\n",
+                               l_comp_no);
+               }
+
+               /* keep your private count of tiles */
+               backup_compno++;
+       };
+#endif /* USE_JPWL */
+
        if (! j2k_read_SQcd_SQcc(p_j2k,l_comp_no,p_header_data,&p_header_size,p_manager)) {
                opj_event_msg_v2(p_manager, EVT_ERROR, "Error reading QCC marker\n");
                return OPJ_FALSE;
@@ -2249,7 +2563,7 @@ opj_bool j2k_read_poc_v2 (
                                                struct opj_event_mgr * p_manager)
 {
        OPJ_UINT32 i, l_nb_comp, l_tmp;
-       opj_image_header_t * l_image = 00;
+       opj_image_t * l_image = 00;
        OPJ_UINT32 l_old_poc_nb, l_current_poc_nb, l_current_poc_remaining;
        OPJ_UINT32 l_chunk_size, l_comp_room;
 
@@ -2257,12 +2571,12 @@ opj_bool j2k_read_poc_v2 (
        opj_tcp_v2_t *l_tcp = 00;
        opj_poc_t *l_current_poc = 00;
 
-       // preconditions
+       /* preconditions */
        assert(p_header_data != 00);
        assert(p_j2k != 00);
        assert(p_manager != 00);
 
-       l_image = p_j2k->m_image_header;
+       l_image = p_j2k->m_private_image;
        l_nb_comp = l_image->numcomps;
        if (l_nb_comp <= 256) {
                l_comp_room = 1;
@@ -2280,7 +2594,7 @@ opj_bool j2k_read_poc_v2 (
        }
 
        l_cp = &(p_j2k->m_cp);
-       l_tcp = (p_j2k->m_specific_param.m_decoder.m_state == J2K_STATE_TPH) ? /* FIXME J2K_DEC_STATE_TPH*/
+       l_tcp = (p_j2k->m_specific_param.m_decoder.m_state == J2K_STATE_TPH) ?
                                &l_cp->tcps[p_j2k->m_current_tile_number] :
                                p_j2k->m_specific_param.m_decoder.m_default_tcp;
        l_old_poc_nb = l_tcp->POC ? l_tcp->numpocs + 1 : 0;
@@ -2349,7 +2663,7 @@ opj_bool j2k_read_crg_v2 (
        assert(p_j2k != 00);
        assert(p_manager != 00);
 
-       l_nb_comp = p_j2k->m_image_header->numcomps;
+       l_nb_comp = p_j2k->m_private_image->numcomps;
 
        if (p_header_size != l_nb_comp *4) {
                opj_event_msg_v2(p_manager, EVT_ERROR, "Error reading CRG marker\n");
@@ -3280,22 +3594,23 @@ opj_bool j2k_read_sot_v2 (
        l_tile_y = p_j2k->m_current_tile_number / l_cp->tw;
 
 #ifdef USE_JPWL
-       if (p_j2k->m_cp->correct) {
+       if (l_cp->correct) {
 
+               int tileno = p_j2k->m_current_tile_number;
                static int backup_tileno = 0;
 
                /* tileno is negative or larger than the number of tiles!!! */
-               if ((tileno < 0) || (tileno > (cp->tw * cp->th))) {
-                       opj_event_msg(p_j2k->cinfo, EVT_ERROR,
+               if ((tileno < 0) || (tileno > (l_cp->tw * l_cp->th))) {
+                       opj_event_msg_v2(p_manager, EVT_ERROR,
                                "JPWL: bad tile number (%d out of a maximum of %d)\n",
-                               tileno, (cp->tw * cp->th));
+                               tileno, (l_cp->tw * l_cp->th));
                        if (!JPWL_ASSUME) {
-                               opj_event_msg(p_j2k->cinfo, EVT_ERROR, "JPWL: giving up\n");
-                               return;
+                               opj_event_msg_v2(p_manager, EVT_ERROR, "JPWL: giving up\n");
+                               return OPJ_FALSE;
                        }
                        /* we try to correct */
                        tileno = backup_tileno;
-                       opj_event_msg(p_j2k->cinfo, EVT_WARNING, "- trying to adjust this\n"
+                       opj_event_msg_v2(p_manager, EVT_WARNING, "- trying to adjust this\n"
                                "- setting tile number to %d\n",
                                tileno);
                }
@@ -3313,29 +3628,31 @@ opj_bool j2k_read_sot_v2 (
        p_header_data+=4;
 
 #ifdef USE_JPWL
-       if (p_j2k->m_cp->correct) {
+       if (l_cp->correct) {
 
                /* totlen is negative or larger than the bytes left!!! */
-               if ((totlen < 0) || (totlen > (p_stream_numbytesleft(p_stream) + 8))) {
-                       opj_event_msg(p_j2k->cinfo, EVT_ERROR,
+               if ((l_tot_len < 0) || (l_tot_len > p_header_size ) ) { /* FIXME it seems correct; for info in V1 -> (p_stream_numbytesleft(p_stream) + 8))) { */
+                       opj_event_msg_v2(p_manager, EVT_ERROR,
                                "JPWL: bad tile byte size (%d bytes against %d bytes left)\n",
-                               totlen, p_stream_numbytesleft(p_stream) + 8);
+                               l_tot_len, p_header_size ); /* FIXME it seems correct; for info in V1 -> p_stream_numbytesleft(p_stream) + 8); */
                        if (!JPWL_ASSUME) {
-                               opj_event_msg(p_j2k->cinfo, EVT_ERROR, "JPWL: giving up\n");
-                               return;
+                               opj_event_msg_v2(p_manager, EVT_ERROR, "JPWL: giving up\n");
+                               return OPJ_FALSE;
                        }
                        /* we try to correct */
-                       totlen = 0;
-                       opj_event_msg(p_j2k->cinfo, EVT_WARNING, "- trying to adjust this\n"
+                       l_tot_len = 0;
+                       opj_event_msg_v2(p_manager, EVT_WARNING, "- trying to adjust this\n"
                                "- setting Psot to %d => assuming it is the last tile\n",
-                               totlen);
+                               l_tot_len);
                }
        };
 #endif /* USE_JPWL */
 
+       /* Ref A.4.2: Psot could be equal zero if it is the last tile-part of the codestream.*/
        if (!l_tot_len) {
-               opj_event_msg_v2(p_manager, EVT_ERROR, "Cannot read data with no size known, giving up\n");
-               return OPJ_FALSE;
+               opj_event_msg_v2(p_manager, EVT_INFO, "Psot value of the current tile-part is equal to zero, "
+                               "we assuming it is the last tile-part of the codestream.\n");
+               p_j2k->m_specific_param.m_decoder.m_last_tile_part = 1;
        }
 
        opj_read_bytes(p_header_data,&l_current_part ,1);       /* TPsot */
@@ -3345,6 +3662,16 @@ opj_bool j2k_read_sot_v2 (
        ++p_header_data;
 
        if (l_num_parts != 0) { /* Number of tile-part header is provided by this tile-part header */
+               /* Useful to manage the case of textGBR.jp2 file because two values of TNSot are allowed: the correct numbers of
+                * tile-parts for that tile and zero (A.4.2 of 15444-1 : 2002). */
+               if (l_tcp->m_nb_tile_parts) {
+                       if (l_current_part >= l_tcp->m_nb_tile_parts){
+                               opj_event_msg_v2(p_manager, EVT_ERROR, "In SOT marker, TPSot (%d) is not valid regards to the current "
+                                               "number of tile-part (%d), giving up\n", l_current_part, l_tcp->m_nb_tile_parts );
+                               p_j2k->m_specific_param.m_decoder.m_last_tile_part = 1;
+                               return OPJ_FALSE;
+                       }
+               }
                l_tcp->m_nb_tile_parts = l_num_parts;
        }
 
@@ -3355,20 +3682,74 @@ opj_bool j2k_read_sot_v2 (
                }
        }
 
-       /* Keep the size of data to skip after this marker */
-       p_j2k->m_specific_param.m_decoder.m_sot_length = l_tot_len - 12; /* SOT_marker_size = 12 */
+       if (!p_j2k->m_specific_param.m_decoder.m_last_tile_part){
+               /* Keep the size of data to skip after this marker */
+               p_j2k->m_specific_param.m_decoder.m_sot_length = l_tot_len - 12; /* SOT_marker_size = 12 */
+       }
+       else {
+               /* FIXME: need to be computed from the number of bytes remaining in the codestream */
+               p_j2k->m_specific_param.m_decoder.m_sot_length = 0;
+       }
+
        p_j2k->m_specific_param.m_decoder.m_state = J2K_STATE_TPH;
 
-       /* Check if the current tile is outside the area we want decode (in tile index)*/
-       p_j2k->m_specific_param.m_decoder.m_skip_data =
-                       (l_tile_x < p_j2k->m_specific_param.m_decoder.m_start_tile_x)
-               ||      (l_tile_x >= p_j2k->m_specific_param.m_decoder.m_end_tile_x)
-               ||  (l_tile_y < p_j2k->m_specific_param.m_decoder.m_start_tile_y)
-               ||      (l_tile_y >= p_j2k->m_specific_param.m_decoder.m_end_tile_y);
+       /* Check if the current tile is outside the area we want decode or not corresponding to the tile index*/
+       if (p_j2k->m_specific_param.m_decoder.m_tile_ind_to_dec == -1) {
+               p_j2k->m_specific_param.m_decoder.m_skip_data =
+                               (l_tile_x < p_j2k->m_specific_param.m_decoder.m_start_tile_x)
+                       ||      (l_tile_x >= p_j2k->m_specific_param.m_decoder.m_end_tile_x)
+                       ||  (l_tile_y < p_j2k->m_specific_param.m_decoder.m_start_tile_y)
+                       ||      (l_tile_y >= p_j2k->m_specific_param.m_decoder.m_end_tile_y);
+       }
+       else
+               p_j2k->m_specific_param.m_decoder.m_skip_data =
+                       (p_j2k->m_current_tile_number != p_j2k->m_specific_param.m_decoder.m_tile_ind_to_dec);
 
        /* Index */
+       if (p_j2k->cstr_index)
+       {
+               p_j2k->cstr_index->tile_index[p_j2k->m_current_tile_number].tileno = p_j2k->m_current_tile_number;
+               p_j2k->cstr_index->tile_index[p_j2k->m_current_tile_number].current_tpsno = l_current_part;
+
+               if (l_num_parts != 0){
+                       p_j2k->cstr_index->tile_index[p_j2k->m_current_tile_number].nb_tps = l_num_parts;
+                       p_j2k->cstr_index->tile_index[p_j2k->m_current_tile_number].current_nb_tps = l_num_parts;
+
+
+                       if (!p_j2k->cstr_index->tile_index[p_j2k->m_current_tile_number].tp_index)
+                               p_j2k->cstr_index->tile_index[p_j2k->m_current_tile_number].tp_index =
+                                       (opj_tp_index_t*)opj_calloc(l_num_parts, sizeof(opj_tp_index_t));
+                       else
+                               p_j2k->cstr_index->tile_index[p_j2k->m_current_tile_number].tp_index =
+                                       (opj_tp_index_t*)opj_realloc(
+                                                       p_j2k->cstr_index->tile_index[p_j2k->m_current_tile_number].tp_index,
+                                                       l_num_parts* sizeof(opj_tp_index_t));
+               }
+               else{
+                       /*if (!p_j2k->cstr_index->tile_index[p_j2k->m_current_tile_number].tp_index)*/ {
+
+                               if (!p_j2k->cstr_index->tile_index[p_j2k->m_current_tile_number].tp_index) {
+                                       p_j2k->cstr_index->tile_index[p_j2k->m_current_tile_number].current_nb_tps = 10;
+                                       p_j2k->cstr_index->tile_index[p_j2k->m_current_tile_number].tp_index =
+                                               (opj_tp_index_t*)opj_calloc( p_j2k->cstr_index->tile_index[p_j2k->m_current_tile_number].current_nb_tps,
+                                                                                                        sizeof(opj_tp_index_t));
+                               }
+
+                               if ( l_current_part >= p_j2k->cstr_index->tile_index[p_j2k->m_current_tile_number].current_nb_tps ){
+                                       p_j2k->cstr_index->tile_index[p_j2k->m_current_tile_number].current_nb_tps += 10;
+                                       p_j2k->cstr_index->tile_index[p_j2k->m_current_tile_number].tp_index =
+                                               (opj_tp_index_t*)opj_realloc( p_j2k->cstr_index->tile_index[p_j2k->m_current_tile_number].tp_index,
+                                                                                                         p_j2k->cstr_index->tile_index[p_j2k->m_current_tile_number].current_nb_tps
+                                                                                                         * sizeof(opj_tp_index_t));
+                               }
+                       }
 
-       /* TODO move this onto a separate method to call before reading any SOT */
+               }
+
+       }
+
+
+       /* FIXME move this onto a separate method to call before reading any SOT, remove part about main_end header, use a index struct inside p_j2k */
        /* if (p_j2k->cstr_info) {
                if (l_tcp->first) {
                        if (tileno == 0) {
@@ -3527,27 +3908,36 @@ opj_bool j2k_read_sod_v2 (
                                        )
 {
        OPJ_UINT32 l_current_read_size;
-       opj_codestream_info_v2_t * l_cstr_info = 00;
+       opj_codestream_index_t * l_cstr_index = 00;
        OPJ_BYTE ** l_current_data = 00;
        opj_tcp_v2_t * l_tcp = 00;
        OPJ_UINT32 * l_tile_len = 00;
 
-       // preconditions
+       /* preconditions */
        assert(p_j2k != 00);
        assert(p_manager != 00);
        assert(p_stream != 00);
 
        l_tcp = &(p_j2k->m_cp.tcps[p_j2k->m_current_tile_number]);
-       p_j2k->m_specific_param.m_decoder.m_sot_length -= 2;
+
+       if (p_j2k->m_specific_param.m_decoder.m_last_tile_part) {
+               // opj_stream_get_number_byte_left returns OPJ_OFF_T
+               // but we are in the last tile part,
+               // so its result will fit on OPJ_UINT32 unless we find
+               // a file with a single tile part of more than 4 GB...
+               p_j2k->m_specific_param.m_decoder.m_sot_length = (OPJ_UINT32)(opj_stream_get_number_byte_left(p_stream) - 2);
+       }
+       else
+               p_j2k->m_specific_param.m_decoder.m_sot_length -= 2;
 
        l_current_data = &(l_tcp->m_data);
        l_tile_len = &l_tcp->m_data_size;
 
        if (! *l_current_data) {
-               *l_current_data = (OPJ_BYTE*) opj_malloc/*FIXME V2 -> my_opj_malloc*/(p_j2k->m_specific_param.m_decoder.m_sot_length);
+               *l_current_data = (OPJ_BYTE*) opj_malloc(p_j2k->m_specific_param.m_decoder.m_sot_length);
        }
        else {
-               *l_current_data = (OPJ_BYTE*) opj_realloc/*FIXME V2 -> my_opj_realloc*/(*l_current_data, *l_tile_len + p_j2k->m_specific_param.m_decoder.m_sot_length);
+               *l_current_data = (OPJ_BYTE*) opj_realloc(*l_current_data, *l_tile_len + p_j2k->m_specific_param.m_decoder.m_sot_length);
        }
 
        if (*l_current_data == 00) {
@@ -3555,21 +3945,26 @@ opj_bool j2k_read_sod_v2 (
                return OPJ_FALSE;
        }
 
-       l_cstr_info = p_j2k->cstr_info;
 
        /* Index */
-#ifdef TODO_MSD
-       if (l_cstr_info) {
-               OPJ_SIZE_T l_current_pos = opj_stream_tell(p_stream)-1;
-               l_cstr_info->tile[p_j2k->m_current_tile_number].tp[p_j2k->m_specific_param.m_encoder.m_current_tile_part_number].tp_end_header = l_current_pos;
+       l_cstr_index = p_j2k->cstr_index;
+       if (l_cstr_index) {
+               OPJ_OFF_T l_current_pos = opj_stream_tell(p_stream) - 2;
 
-               if (p_j2k->m_specific_param.m_encoder.m_current_tile_part_number == 0) {
-                       l_cstr_info->tile[p_j2k->m_current_tile_number].end_header = l_current_pos;
-               }
+               OPJ_UINT32 l_current_tile_part = l_cstr_index->tile_index[p_j2k->m_current_tile_number].current_tpsno;
+               l_cstr_index->tile_index[p_j2k->m_current_tile_number].tp_index[l_current_tile_part].end_header =
+                               l_current_pos;
+               l_cstr_index->tile_index[p_j2k->m_current_tile_number].tp_index[l_current_tile_part].end_pos =
+                               l_current_pos + p_j2k->m_specific_param.m_decoder.m_sot_length + 2;
 
-               l_cstr_info->packno = 0;
+               j2k_add_tlmarker_v2(p_j2k->m_current_tile_number,
+                                                       l_cstr_index,
+                                                       J2K_MS_SOD,
+                                                       l_current_pos,
+                                                       p_j2k->m_specific_param.m_decoder.m_sot_length + 2);
+
+               /*l_cstr_index->packno = 0;*/
        }
-#endif
 
        l_current_read_size = opj_stream_read_data(     p_stream,
                                                                                                *l_current_data + *l_tile_len,
@@ -3661,7 +4056,7 @@ opj_bool j2k_read_rgn_v2 (
                                        )
 {
        OPJ_UINT32 l_nb_comp;
-       opj_image_header_t * l_image = 00;
+       opj_image_t * l_image = 00;
 
        opj_cp_v2_t *l_cp = 00;
        opj_tcp_v2_t *l_tcp = 00;
@@ -3672,7 +4067,7 @@ opj_bool j2k_read_rgn_v2 (
        assert(p_j2k != 00);
        assert(p_manager != 00);
 
-       l_image = p_j2k->m_image_header;
+       l_image = p_j2k->m_private_image;
        l_nb_comp = l_image->numcomps;
 
        if (l_nb_comp <= 256) {
@@ -3686,7 +4081,7 @@ opj_bool j2k_read_rgn_v2 (
        }
 
        l_cp = &(p_j2k->m_cp);
-       l_tcp = (p_j2k->m_specific_param.m_decoder.m_state == J2K_STATE_TPH) ? /*FIXME J2K_DEC_STATE_TPH)*/
+       l_tcp = (p_j2k->m_specific_param.m_decoder.m_state == J2K_STATE_TPH) ?
                                &l_cp->tcps[p_j2k->m_current_tile_number] :
                                p_j2k->m_specific_param.m_decoder.m_default_tcp;
 
@@ -3696,15 +4091,15 @@ opj_bool j2k_read_rgn_v2 (
        ++p_header_data;
 
 #ifdef USE_JPWL
-       if (p_j2k->m_cp->correct) {
+       if (l_cp->correct) {
                /* totlen is negative or larger than the bytes left!!! */
-               if (compno >= numcomps) {
-                       opj_event_msg(p_j2k->cinfo, EVT_ERROR,
+               if (l_comp_room >= l_nb_comp) {
+                       opj_event_msg_v2(p_manager, EVT_ERROR,
                                "JPWL: bad component number in RGN (%d when there are only %d)\n",
-                               compno, numcomps);
+                               l_comp_room, l_nb_comp);
                        if (!JPWL_ASSUME || JPWL_ASSUME) {
-                               opj_event_msg(p_j2k->cinfo, EVT_ERROR, "JPWL: giving up\n");
-                               return;
+                               opj_event_msg_v2(p_manager, EVT_ERROR, "JPWL: giving up\n");
+                               return OPJ_FALSE;
                        }
                }
        };
@@ -3762,11 +4157,9 @@ static void j2k_read_eoc(opj_j2k_t *j2k) {
  * @param      p_header_size   the size of the data contained in the SOD marker.
  * @param      p_manager               the user event manager.
 */
-opj_bool j2k_read_eoc_v2 (
-                                               opj_j2k_v2_t *p_j2k,
-                                               struct opj_stream_private *p_stream,
-                                               struct opj_event_mgr * p_manager
-                                       )
+opj_bool j2k_read_eoc_v2 (     opj_j2k_v2_t *p_j2k,
+                                                       struct opj_stream_private *p_stream,
+                                                       struct opj_event_mgr * p_manager )
 {
        OPJ_UINT32 i;
        opj_tcd_v2_t * l_tcd = 00;
@@ -3774,7 +4167,7 @@ opj_bool j2k_read_eoc_v2 (
        opj_tcp_v2_t * l_tcp = 00;
        opj_bool l_success;
 
-       // preconditions
+       /* preconditions */
        assert(p_j2k != 00);
        assert(p_manager != 00);
        assert(p_stream != 00);
@@ -3796,11 +4189,11 @@ opj_bool j2k_read_eoc_v2 (
                                return OPJ_FALSE;
                        }
 
-                       l_success = tcd_decode_tile_v2(l_tcd, l_tcp->m_data, l_tcp->m_data_size, i, p_j2k->cstr_info);
+                       l_success = tcd_decode_tile_v2(l_tcd, l_tcp->m_data, l_tcp->m_data_size, i, p_j2k->cstr_index);
                        /* cleanup */
 
                        if (! l_success) {
-                               p_j2k->m_specific_param.m_decoder.m_state |= J2K_STATE_ERR; // TODO MSD J2K_DEC_STATE_ERR;
+                               p_j2k->m_specific_param.m_decoder.m_state |= J2K_STATE_ERR;
                                break;
                        }
                }
@@ -3930,12 +4323,13 @@ static void j2k_read_unk(opj_j2k_t *j2k) {
 */
 opj_bool j2k_read_unk_v2 (     opj_j2k_v2_t *p_j2k,
                                                        struct opj_stream_private *p_stream,
+                                                       OPJ_UINT32 *output_marker,
                                                        struct opj_event_mgr * p_manager
                                                        )
 {
-       OPJ_BYTE l_data [2];
-       OPJ_UINT32 l_unknown_size, l_unknown_marker;
-       const opj_dec_memory_marker_handler_t * l_marker_handler = 00;
+       OPJ_UINT32 l_unknown_marker;
+       const opj_dec_memory_marker_handler_t * l_marker_handler;
+       OPJ_UINT32 l_size_unk = 2;
 
        // preconditions
        assert(p_j2k != 00);
@@ -3944,22 +4338,6 @@ opj_bool j2k_read_unk_v2 (       opj_j2k_v2_t *p_j2k,
 
        opj_event_msg_v2(p_manager, EVT_WARNING, "Unknown marker\n");
 
-
-
-/*     if (opj_stream_read_data(p_stream,l_data,2,p_manager) != 2) {
-               opj_event_msg_v2(p_manager, EVT_WARNING, "Unknown marker\n");
-               return OPJ_FALSE;
-       }
-
-       opj_read_bytes(l_data,&l_unknown_size,2);
-       if (l_unknown_size < 2) {
-               return OPJ_FALSE;
-       }
-       l_unknown_size-=2;
-
-       if (opj_stream_skip(p_stream,l_unknown_size,p_manager) != l_unknown_size) {
-               return OPJ_FALSE;
-       }*/
        while(1) {
                // Try to read 2 bytes (the next marker ID) from stream and copy them into the buffer
                if (opj_stream_read_data(p_stream,p_j2k->m_specific_param.m_decoder.m_header_data,2,p_manager) != 2) {
@@ -3980,12 +4358,22 @@ opj_bool j2k_read_unk_v2 (      opj_j2k_v2_t *p_j2k,
                                return OPJ_FALSE;
                        }
                        else {
-                               if (l_marker_handler->id != J2K_MS_UNK)
-                                       break; // next marker is known and well located
+                               if (l_marker_handler->id != J2K_MS_UNK) {
+                                       /* Add the marker to the codestream index*/
+                                       if (l_marker_handler->id != J2K_MS_SOT)
+                                               j2k_add_mhmarker_v2(p_j2k->cstr_index, J2K_MS_UNK,
+                                                                                       (OPJ_UINT32) opj_stream_tell(p_stream) - l_size_unk,
+                                                                                       l_size_unk);
+                                       break; /* next marker is known and well located */
+                               }
+                               else
+                                       l_size_unk += 2;
                        }
                }
        }
 
+       *output_marker = l_marker_handler->id ;
+
        return OPJ_TRUE;
 }
 
@@ -4003,550 +4391,1075 @@ static opj_dec_mstabent_t *j2k_dec_mstab_lookup(int id) {
        return e;
 }
 
-/* ----------------------------------------------------------------------- */
-/* J2K / JPT decoder interface                                             */
-/* ----------------------------------------------------------------------- */
-
-opj_j2k_t* j2k_create_decompress(opj_common_ptr cinfo) {
-       opj_j2k_t *j2k = (opj_j2k_t*) opj_calloc(1, sizeof(opj_j2k_t));
-       if(!j2k)
-               return NULL;
 
-       j2k->default_tcp = (opj_tcp_t*) opj_calloc(1, sizeof(opj_tcp_t));
-       if(!j2k->default_tcp) {
-               opj_free(j2k);
-               return NULL;
-       }
+/**
+ * Reads a MCT marker (Multiple Component Transform)
+ *
+ * @param      p_header_data   the data contained in the MCT box.
+ * @param      p_j2k                   the jpeg2000 codec.
+ * @param      p_header_size   the size of the data contained in the MCT marker.
+ * @param      p_manager               the user event manager.
+*/
+opj_bool j2k_read_mct (        opj_j2k_v2_t *p_j2k,
+                                               OPJ_BYTE * p_header_data,
+                                               OPJ_UINT32 p_header_size,
+                                               struct opj_event_mgr * p_manager )
+{
+       OPJ_UINT32 i;
+       opj_tcp_v2_t *l_tcp = 00;
+       OPJ_UINT32 l_tmp;
+       OPJ_UINT32 l_indix;
+       opj_mct_data_t * l_mct_data;
 
-       j2k->cinfo = cinfo;
-       j2k->tile_data = NULL;
+       /* preconditions */
+       assert(p_header_data != 00);
+       assert(p_j2k != 00);
 
-       return j2k;
-}
+       l_tcp = p_j2k->m_specific_param.m_decoder.m_state == J2K_STATE_TPH ?
+                       &p_j2k->m_cp.tcps[p_j2k->m_current_tile_number] :
+                       p_j2k->m_specific_param.m_decoder.m_default_tcp;
 
-void j2k_destroy_decompress(opj_j2k_t *j2k) {
-       int i = 0;
+       if (p_header_size < 2) {
+               opj_event_msg_v2(p_manager, EVT_ERROR, "Error reading MCT marker\n");
+               return OPJ_FALSE;
+       }
 
-       if(j2k->tile_len != NULL) {
-               opj_free(j2k->tile_len);
+       /* first marker */
+       opj_read_bytes(p_header_data,&l_tmp,2);                         /* Zmct */
+       p_header_data += 2;
+       if (l_tmp != 0) {
+               opj_event_msg_v2(p_manager, EVT_WARNING, "Cannot take in charge mct data within multiple MCT records\n");
+               return OPJ_TRUE;
        }
-       if(j2k->tile_data != NULL) {
-               opj_free(j2k->tile_data);
+
+       if(p_header_size <= 6) {
+               opj_event_msg_v2(p_manager, EVT_ERROR, "Error reading MCT marker\n");
+               return OPJ_FALSE;
        }
-       if(j2k->default_tcp != NULL) {
-               opj_tcp_t *default_tcp = j2k->default_tcp;
-               if(default_tcp->ppt_data_first != NULL) {
-                       opj_free(default_tcp->ppt_data_first);
-               }
-               if(j2k->default_tcp->tccps != NULL) {
-                       opj_free(j2k->default_tcp->tccps);
+
+       /* Imct -> no need for other values, take the first, type is double with decorrelation x0000 1101 0000 0000*/
+       opj_read_bytes(p_header_data,&l_tmp,2);                         /* Imct */
+       p_header_data += 2;
+
+       l_indix = l_tmp & 0xff;
+       l_mct_data = l_tcp->m_mct_records;
+
+       for (i=0;i<l_tcp->m_nb_mct_records;++i) {
+               if (l_mct_data->m_index == l_indix) {
+                       break;
                }
-               opj_free(j2k->default_tcp);
+               ++l_mct_data;
        }
-       if(j2k->cp != NULL) {
-               opj_cp_t *cp = j2k->cp;
-               if(cp->tcps != NULL) {
-                       for(i = 0; i < cp->tw * cp->th; i++) {
-                               if(cp->tcps[i].ppt_data_first != NULL) {
-                                       opj_free(cp->tcps[i].ppt_data_first);
-                               }
-                               if(cp->tcps[i].tccps != NULL) {
-                                       opj_free(cp->tcps[i].tccps);
-                               }
+
+       /* NOT FOUND */
+       if (i == l_tcp->m_nb_mct_records) {
+               if (l_tcp->m_nb_mct_records == l_tcp->m_nb_max_mct_records) {
+                       l_tcp->m_nb_max_mct_records += J2K_MCT_DEFAULT_NB_RECORDS;
+
+                       l_tcp->m_mct_records = (opj_mct_data_t*)opj_realloc(l_tcp->m_mct_records,l_tcp->m_nb_max_mct_records * sizeof(opj_mct_data_t));
+                       if(! l_tcp->m_mct_records) {
+                               opj_event_msg_v2(p_manager, EVT_ERROR, "Error reading MCT marker\n");
+                               return OPJ_FALSE;
                        }
-                       opj_free(cp->tcps);
-               }
-               if(cp->ppm_data_first != NULL) {
-                       opj_free(cp->ppm_data_first);
-               }
-               if(cp->tileno != NULL) {
-                       opj_free(cp->tileno);  
-               }
-               if(cp->comment != NULL) {
-                       opj_free(cp->comment);
+
+                       l_mct_data = l_tcp->m_mct_records + l_tcp->m_nb_mct_records;
+                       memset(l_mct_data ,0,(l_tcp->m_nb_max_mct_records - l_tcp->m_nb_mct_records) * sizeof(opj_mct_data_t));
                }
 
-               opj_free(cp);
+               l_mct_data = l_tcp->m_mct_records + l_tcp->m_nb_mct_records;
        }
-       opj_free(j2k);
-}
-
-void j2k_setup_decoder(opj_j2k_t *j2k, opj_dparameters_t *parameters) {
-       if(j2k && parameters) {
-               /* create and initialize the coding parameters structure */
-               opj_cp_t *cp = (opj_cp_t*) opj_calloc(1, sizeof(opj_cp_t));
-               cp->reduce = parameters->cp_reduce;     
-               cp->layer = parameters->cp_layer;
-               cp->limit_decoding = parameters->cp_limit_decoding;
 
-#ifdef USE_JPWL
-               cp->correct = parameters->jpwl_correct;
-               cp->exp_comps = parameters->jpwl_exp_comps;
-               cp->max_tiles = parameters->jpwl_max_tiles;
-#endif /* USE_JPWL */
+       if (l_mct_data->m_data) {
+               opj_free(l_mct_data->m_data);
+               l_mct_data->m_data = 00;
+       }
 
+       l_mct_data->m_index = l_indix;
+       l_mct_data->m_array_type = (J2K_MCT_ARRAY_TYPE)((l_tmp  >> 8) & 3);
+       l_mct_data->m_element_type = (J2K_MCT_ELEMENT_TYPE)((l_tmp  >> 10) & 3);
 
-               /* keep a link to cp so that we can destroy it later in j2k_destroy_decompress */
-               j2k->cp = cp;
+       opj_read_bytes(p_header_data,&l_tmp,2);                         /* Ymct */
+       p_header_data+=2;
+       if (l_tmp != 0) {
+               opj_event_msg_v2(p_manager, EVT_WARNING, "Cannot take in charge multiple MCT markers\n");
+               return OPJ_TRUE;
        }
-}
 
-void j2k_setup_decoder_v2(opj_j2k_v2_t *j2k, opj_dparameters_t *parameters) {
-       if(j2k && parameters) {
-               /* create and initialize the coding parameters structure */
-               //opj_cp_v2_t *cp = (opj_cp_v2_t*) opj_calloc(1, sizeof(opj_cp_v2_t));
-               j2k->m_cp.m_specific_param.m_dec.m_layer = parameters->cp_layer;
-               j2k->m_cp.m_specific_param.m_dec.m_reduce = parameters->cp_reduce;
+       p_header_size -= 6;
 
-               /*cp->reduce = parameters->cp_reduce;
-               cp->layer = parameters->cp_layer;
-               cp->limit_decoding = parameters->cp_limit_decoding;*/
+       l_mct_data->m_data = (OPJ_BYTE*)opj_malloc(p_header_size);
+       if (! l_mct_data->m_data) {
+               opj_event_msg_v2(p_manager, EVT_ERROR, "Error reading MCT marker\n");
+               return OPJ_FALSE;
+       }
+       memcpy(l_mct_data->m_data,p_header_data,p_header_size);
 
-               // TODO MS
-#ifdef USE_JPWL
-               cp->correct = parameters->jpwl_correct;
-               cp->exp_comps = parameters->jpwl_exp_comps;
-               cp->max_tiles = parameters->jpwl_max_tiles;
-#endif /* USE_JPWL */
+       l_mct_data->m_data_size = p_header_size;
+       ++l_tcp->m_nb_mct_records;
 
-       }
+       return OPJ_TRUE;
 }
 
-opj_image_t* j2k_decode(opj_j2k_t *j2k, opj_cio_t *cio, opj_codestream_info_t *cstr_info) {
-       opj_image_t *image = NULL;
+/**
+ * Reads a MCC marker (Multiple Component Collection)
+ *
+ * @param      p_header_data   the data contained in the MCC box.
+ * @param      p_j2k                   the jpeg2000 codec.
+ * @param      p_header_size   the size of the data contained in the MCC marker.
+ * @param      p_manager               the user event manager.
+*/
+opj_bool j2k_read_mcc (        opj_j2k_v2_t *p_j2k,
+                                       OPJ_BYTE * p_header_data,
+                                       OPJ_UINT32 p_header_size,
+                                       struct opj_event_mgr * p_manager )
+{
+       OPJ_UINT32 i,j;
+       OPJ_UINT32 l_tmp;
+       OPJ_UINT32 l_indix;
+       opj_tcp_v2_t * l_tcp;
+       opj_simple_mcc_decorrelation_data_t * l_mcc_record;
+       opj_mct_data_t * l_mct_data;
+       OPJ_UINT32 l_nb_collections;
+       OPJ_UINT32 l_nb_comps;
+       OPJ_UINT32 l_nb_bytes_by_comp;
 
-       opj_common_ptr cinfo = j2k->cinfo;      
 
-       j2k->cio = cio;
-       j2k->cstr_info = cstr_info;
-       if (cstr_info)
-               memset(cstr_info, 0, sizeof(opj_codestream_info_t));
+       /* preconditions */
+       assert(p_header_data != 00);
+       assert(p_j2k != 00);
+       assert(p_manager != 00);
 
-       /* create an empty image */
-       image = opj_image_create0();
-       j2k->image = image;
+       l_tcp = p_j2k->m_specific_param.m_decoder.m_state == J2K_STATE_TPH ?
+                       &p_j2k->m_cp.tcps[p_j2k->m_current_tile_number] :
+                       p_j2k->m_specific_param.m_decoder.m_default_tcp;
 
-       j2k->state = J2K_STATE_MHSOC;
+       if (p_header_size < 2) {
+               opj_event_msg_v2(p_manager, EVT_ERROR, "Error reading MCC marker\n");
+               return OPJ_FALSE;
+       }
 
-       for (;;) {
-               opj_dec_mstabent_t *e;
-               int id = cio_read(cio, 2);
+       /* first marker */
+       opj_read_bytes(p_header_data,&l_tmp,2);                         /* Zmcc */
+       p_header_data += 2;
+       if (l_tmp != 0) {
+               opj_event_msg_v2(p_manager, EVT_WARNING, "Cannot take in charge multiple data spanning\n");
+               return OPJ_TRUE;
+       }
 
-#ifdef USE_JPWL
-               /* we try to honor JPWL correction power */
-               if (j2k->cp->correct) {
+       if (p_header_size < 7) {
+               opj_event_msg_v2(p_manager, EVT_ERROR, "Error reading MCC marker\n");
+               return OPJ_FALSE;
+       }
 
-                       int orig_pos = cio_tell(cio);
-                       opj_bool status;
+       opj_read_bytes(p_header_data,&l_indix,1); /* Imcc -> no need for other values, take the first */
+       ++p_header_data;
 
-                       /* call the corrector */
-                       status = jpwl_correct(j2k);
+       l_mcc_record = l_tcp->m_mcc_records;
 
-                       /* go back to where you were */
-                       cio_seek(cio, orig_pos - 2);
+       for(i=0;i<l_tcp->m_nb_mcc_records;++i) {
+               if (l_mcc_record->m_index == l_indix) {
+                       break;
+               }
+               ++l_mcc_record;
+       }
 
-                       /* re-read the marker */
-                       id = cio_read(cio, 2);
+       /** NOT FOUND */
+       if (i == l_tcp->m_nb_mcc_records) {
+               if (l_tcp->m_nb_mcc_records == l_tcp->m_nb_max_mcc_records) {
+                       l_tcp->m_nb_max_mcc_records += J2K_MCC_DEFAULT_NB_RECORDS;
 
-                       /* check whether it begins with ff */
-                       if (id >> 8 != 0xff) {
-                               opj_event_msg(cinfo, EVT_ERROR,
-                                       "JPWL: possible bad marker %x at %d\n",
-                                       id, cio_tell(cio) - 2);
-                               if (!JPWL_ASSUME) {
-                                       opj_image_destroy(image);
-                                       opj_event_msg(cinfo, EVT_ERROR, "JPWL: giving up\n");
-                                       return 0;
-                               }
-                               /* we try to correct */
-                               id = id | 0xff00;
-                               cio_seek(cio, cio_tell(cio) - 2);
-                               cio_write(cio, id, 2);
-                               opj_event_msg(cinfo, EVT_WARNING, "- trying to adjust this\n"
-                                       "- setting marker to %x\n",
-                                       id);
+                       l_tcp->m_mcc_records = (opj_simple_mcc_decorrelation_data_t*)
+                                       opj_realloc(l_tcp->m_mcc_records,l_tcp->m_nb_max_mcc_records * sizeof(opj_simple_mcc_decorrelation_data_t));
+                       if (! l_tcp->m_mcc_records) {
+                               opj_event_msg_v2(p_manager, EVT_ERROR, "Error reading MCC marker\n");
+                               return OPJ_FALSE;
                        }
-
+                       l_mcc_record = l_tcp->m_mcc_records + l_tcp->m_nb_mcc_records;
+                       memset(l_mcc_record,0,(l_tcp->m_nb_max_mcc_records-l_tcp->m_nb_mcc_records) * sizeof(opj_simple_mcc_decorrelation_data_t));
                }
-#endif /* USE_JPWL */
+               l_mcc_record = l_tcp->m_mcc_records + l_tcp->m_nb_mcc_records;
+       }
+       l_mcc_record->m_index = l_indix;
 
-               if (id >> 8 != 0xff) {
-                       opj_image_destroy(image);
-                       opj_event_msg(cinfo, EVT_ERROR, "%.8x: expected a marker instead of %x\n", cio_tell(cio) - 2, id);
-                       return 0;
-               }
-               e = j2k_dec_mstab_lookup(id);
-               // Check if the marker is known
-               if (!(j2k->state & e->states)) {
-                       opj_image_destroy(image);
-                       opj_event_msg(cinfo, EVT_ERROR, "%.8x: unexpected marker %x\n", cio_tell(cio) - 2, id);
-                       return 0;
-               }
-               // Check if the decoding is limited to the main header
-               if (e->id == J2K_MS_SOT && j2k->cp->limit_decoding == LIMIT_TO_MAIN_HEADER) {
-                       opj_event_msg(cinfo, EVT_INFO, "Main Header decoded.\n");
-                       return image;
-               }               
+       /* only one marker atm */
+       opj_read_bytes(p_header_data,&l_tmp,2);                         /* Ymcc */
+       p_header_data+=2;
+       if (l_tmp != 0) {
+               opj_event_msg_v2(p_manager, EVT_WARNING, "Cannot take in charge multiple data spanning\n");
+               return OPJ_TRUE;
+       }
 
-               if (e->handler) {
-                       (*e->handler)(j2k);
-               }
-               if (j2k->state & J2K_STATE_ERR) 
-                       return NULL;    
+       opj_read_bytes(p_header_data,&l_nb_collections,2);                              /* Qmcc -> number of collections -> 1 */
+       p_header_data+=2;
 
-               if (j2k->state == J2K_STATE_MT) {
-                       break;
-               }
-               if (j2k->state == J2K_STATE_NEOC) {
-                       break;
-               }
-       }
-       if (j2k->state == J2K_STATE_NEOC) {
-               j2k_read_eoc(j2k);
+       if (l_nb_collections > 1) {
+               opj_event_msg_v2(p_manager, EVT_WARNING, "Cannot take in charge multiple collections\n");
+               return OPJ_TRUE;
        }
 
-       if (j2k->state != J2K_STATE_MT) {
-               opj_event_msg(cinfo, EVT_WARNING, "Incomplete bitstream\n");
-       }
-       return image;
-}
+       p_header_size -= 7;
 
-/*
-* Read a JPT-stream and decode file
-*
-*/
-opj_image_t* j2k_decode_jpt_stream(opj_j2k_t *j2k, opj_cio_t *cio,  opj_codestream_info_t *cstr_info) {
-       opj_image_t *image = NULL;
-       opj_jpt_msg_header_t header;
-       int position;
-       opj_common_ptr cinfo = j2k->cinfo;
+       for (i=0;i<l_nb_collections;++i) {
+               if (p_header_size < 3) {
+                       opj_event_msg_v2(p_manager, EVT_ERROR, "Error reading MCC marker\n");
+                       return OPJ_FALSE;
+               }
 
-       OPJ_ARG_NOT_USED(cstr_info);
+               opj_read_bytes(p_header_data,&l_tmp,1); /* Xmcci type of component transformation -> array based decorrelation */
+               ++p_header_data;
 
-       j2k->cio = cio;
+               if (l_tmp != 1) {
+                       opj_event_msg_v2(p_manager, EVT_WARNING, "Cannot take in charge collections other than array decorrelation\n");
+                       return OPJ_TRUE;
+               }
 
-       /* create an empty image */
-       image = opj_image_create0();
-       j2k->image = image;
+               opj_read_bytes(p_header_data,&l_nb_comps,2);
 
-       j2k->state = J2K_STATE_MHSOC;
-       
-       /* Initialize the header */
-       jpt_init_msg_header(&header);
-       /* Read the first header of the message */
-       jpt_read_msg_header(cinfo, cio, &header);
-       
-       position = cio_tell(cio);
-       if (header.Class_Id != 6) {     /* 6 : Main header data-bin message */
-               opj_image_destroy(image);
-               opj_event_msg(cinfo, EVT_ERROR, "[JPT-stream] : Expecting Main header first [class_Id %d] !\n", header.Class_Id);
-               return 0;
-       }
-       
-       for (;;) {
-               opj_dec_mstabent_t *e = NULL;
-               int id;
-               
-               if (!cio_numbytesleft(cio)) {
-                       j2k_read_eoc(j2k);
-                       return image;
+               p_header_data+=2;
+               p_header_size-=3;
+
+               l_nb_bytes_by_comp = 1 + (l_nb_comps>>15);
+               l_mcc_record->m_nb_comps = l_nb_comps & 0x7fff;
+
+               if (p_header_size < (l_nb_bytes_by_comp * l_mcc_record->m_nb_comps + 2)) {
+                       opj_event_msg_v2(p_manager, EVT_ERROR, "Error reading MCC marker\n");
+                       return OPJ_FALSE;
                }
-               /* data-bin read -> need to read a new header */
-               if ((unsigned int) (cio_tell(cio) - position) == header.Msg_length) {
-                       jpt_read_msg_header(cinfo, cio, &header);
-                       position = cio_tell(cio);
-                       if (header.Class_Id != 4) {     /* 4 : Tile data-bin message */
-                               opj_image_destroy(image);
-                               opj_event_msg(cinfo, EVT_ERROR, "[JPT-stream] : Expecting Tile info !\n");
-                               return 0;
+
+               p_header_size -= (l_nb_bytes_by_comp * l_mcc_record->m_nb_comps + 2);
+
+               for (j=0;j<l_mcc_record->m_nb_comps;++j) {
+                       opj_read_bytes(p_header_data,&l_tmp,l_nb_bytes_by_comp);        /* Cmccij Component offset*/
+                       p_header_data+=l_nb_bytes_by_comp;
+
+                       if (l_tmp != j) {
+                               opj_event_msg_v2(p_manager, EVT_WARNING, "Cannot take in charge collections with indix shuffle\n");
+                               return OPJ_TRUE;
                        }
                }
-               
-               id = cio_read(cio, 2);
-               if (id >> 8 != 0xff) {
-                       opj_image_destroy(image);
-                       opj_event_msg(cinfo, EVT_ERROR, "%.8x: expected a marker instead of %x\n", cio_tell(cio) - 2, id);
-                       return 0;
+
+               opj_read_bytes(p_header_data,&l_nb_comps,2);
+               p_header_data+=2;
+
+               l_nb_bytes_by_comp = 1 + (l_nb_comps>>15);
+               l_nb_comps &= 0x7fff;
+
+               if (l_nb_comps != l_mcc_record->m_nb_comps) {
+                       opj_event_msg_v2(p_manager, EVT_WARNING, "Cannot take in charge collections without same number of indixes\n");
+                       return OPJ_TRUE;
                }
-               e = j2k_dec_mstab_lookup(id);
-               if (!(j2k->state & e->states)) {
-                       opj_image_destroy(image);
-                       opj_event_msg(cinfo, EVT_ERROR, "%.8x: unexpected marker %x\n", cio_tell(cio) - 2, id);
-                       return 0;
+
+               if (p_header_size < (l_nb_bytes_by_comp * l_mcc_record->m_nb_comps + 3)) {
+                       opj_event_msg_v2(p_manager, EVT_ERROR, "Error reading MCC marker\n");
+                       return OPJ_FALSE;
                }
-               if (e->handler) {
-                       (*e->handler)(j2k);
+
+               p_header_size -= (l_nb_bytes_by_comp * l_mcc_record->m_nb_comps + 3);
+
+               for (j=0;j<l_mcc_record->m_nb_comps;++j) {
+                       opj_read_bytes(p_header_data,&l_tmp,l_nb_bytes_by_comp);        /* Wmccij Component offset*/
+                       p_header_data+=l_nb_bytes_by_comp;
+
+                       if (l_tmp != j) {
+                               opj_event_msg_v2(p_manager, EVT_WARNING, "Cannot take in charge collections with indix shuffle\n");
+                               return OPJ_TRUE;
+                       }
                }
-               if (j2k->state == J2K_STATE_MT) {
-                       break;
+
+               opj_read_bytes(p_header_data,&l_tmp,3); /* Wmccij Component offset*/
+               p_header_data += 3;
+
+               l_mcc_record->m_is_irreversible = ! ((l_tmp>>16) & 1);
+               l_mcc_record->m_decorrelation_array = 00;
+               l_mcc_record->m_offset_array = 00;
+
+               l_indix = l_tmp & 0xff;
+               if (l_indix != 0) {
+                       l_mct_data = l_tcp->m_mct_records;
+                       for (j=0;j<l_tcp->m_nb_mct_records;++j) {
+                               if (l_mct_data->m_index == l_indix) {
+                                       l_mcc_record->m_decorrelation_array = l_mct_data;
+                                       break;
+                               }
+                               ++l_mct_data;
+                       }
+
+                       if (l_mcc_record->m_decorrelation_array == 00) {
+                               opj_event_msg_v2(p_manager, EVT_ERROR, "Error reading MCC marker\n");
+                               return OPJ_FALSE;
+                       }
                }
-               if (j2k->state == J2K_STATE_NEOC) {
-                       break;
+
+               l_indix = (l_tmp >> 8) & 0xff;
+               if (l_indix != 0) {
+                       l_mct_data = l_tcp->m_mct_records;
+                       for (j=0;j<l_tcp->m_nb_mct_records;++j) {
+                               if (l_mct_data->m_index == l_indix) {
+                                       l_mcc_record->m_offset_array = l_mct_data;
+                                       break;
+                               }
+                               ++l_mct_data;
+                       }
+
+                       if (l_mcc_record->m_offset_array == 00) {
+                               opj_event_msg_v2(p_manager, EVT_ERROR, "Error reading MCC marker\n");
+                               return OPJ_FALSE;
+                       }
                }
        }
-       if (j2k->state == J2K_STATE_NEOC) {
-               j2k_read_eoc(j2k);
-       }
-       
-       if (j2k->state != J2K_STATE_MT) {
-               opj_event_msg(cinfo, EVT_WARNING, "Incomplete bitstream\n");
-       }
 
-       return image;
-}
+       if (p_header_size != 0) {
+               opj_event_msg_v2(p_manager, EVT_ERROR, "Error reading MCC marker\n");
+               return OPJ_FALSE;
+       }
 
-/* ----------------------------------------------------------------------- */
-/* J2K encoder interface                                                       */
-/* ----------------------------------------------------------------------- */
+       ++l_tcp->m_nb_mcc_records;
 
-opj_j2k_t* j2k_create_compress(opj_common_ptr cinfo) {
-       opj_j2k_t *j2k = (opj_j2k_t*) opj_calloc(1, sizeof(opj_j2k_t));
-       if(j2k) {
-               j2k->cinfo = cinfo;
-       }
-       return j2k;
+       return OPJ_TRUE;
 }
 
-opj_j2k_v2_t* j2k_create_compress_v2()
+/**
+ * Reads a MCO marker (Multiple Component Transform Ordering)
+ *
+ * @param      p_header_data   the data contained in the MCO box.
+ * @param      p_j2k                   the jpeg2000 codec.
+ * @param      p_header_size   the size of the data contained in the MCO marker.
+ * @param      p_manager               the user event manager.
+*/
+opj_bool j2k_read_mco (        opj_j2k_v2_t *p_j2k,
+                                               OPJ_BYTE * p_header_data,
+                                               OPJ_UINT32 p_header_size,
+                                               struct opj_event_mgr * p_manager )
 {
-       opj_j2k_v2_t *l_j2k = (opj_j2k_v2_t*) opj_malloc(sizeof(opj_j2k_v2_t));
-       if (!l_j2k) {
-               return NULL;
-       }
+       OPJ_UINT32 l_tmp, i;
+       OPJ_UINT32 l_nb_stages;
+       opj_tcp_v2_t * l_tcp;
+       opj_tccp_t * l_tccp;
+       opj_image_t * l_image;
+       opj_image_comp_t * l_img_comp;
 
-       memset(l_j2k,0,sizeof(opj_j2k_v2_t));
+       /* preconditions */
+       assert(p_header_data != 00);
+       assert(p_j2k != 00);
+       assert(p_manager != 00);
 
-       l_j2k->m_is_decoder = 0;
-       l_j2k->m_cp.m_is_decoder = 0;
+       l_image = p_j2k->m_private_image;
+       l_tcp = p_j2k->m_specific_param.m_decoder.m_state == J2K_STATE_TPH ?
+                       &p_j2k->m_cp.tcps[p_j2k->m_current_tile_number] :
+                       p_j2k->m_specific_param.m_decoder.m_default_tcp;
 
-       l_j2k->m_specific_param.m_encoder.m_header_tile_data = (OPJ_BYTE *) opj_malloc(J2K_DEFAULT_HEADER_SIZE);
-       if (! l_j2k->m_specific_param.m_encoder.m_header_tile_data) {
-               j2k_destroy(l_j2k);
-               return NULL;
+       if (p_header_size < 1) {
+               opj_event_msg_v2(p_manager, EVT_ERROR, "Error reading MCO marker\n");
+               return OPJ_FALSE;
        }
 
-       l_j2k->m_specific_param.m_encoder.m_header_tile_data_size = J2K_DEFAULT_HEADER_SIZE;
+       opj_read_bytes(p_header_data,&l_nb_stages,1);                           /* Nmco : only one tranform stage*/
+       ++p_header_data;
 
-       // validation list creation
-       l_j2k->m_validation_list = opj_procedure_list_create();
-       if (! l_j2k->m_validation_list) {
-               j2k_destroy(l_j2k);
-               return NULL;
+       if (l_nb_stages > 1) {
+               opj_event_msg_v2(p_manager, EVT_WARNING, "Cannot take in charge multiple transformation stages.\n");
+               return OPJ_TRUE;
        }
 
-       // execution list creation
-       l_j2k->m_procedure_list = opj_procedure_list_create();
-       if (! l_j2k->m_procedure_list) {
-               j2k_destroy(l_j2k);
-               return NULL;
+       if (p_header_size != l_nb_stages + 1) {
+               opj_event_msg_v2(p_manager, EVT_WARNING, "Error reading MCO marker\n");
+               return OPJ_FALSE;
        }
 
-       return l_j2k;
-}
+       l_tccp = l_tcp->tccps;
+       l_img_comp = l_image->comps;
 
-void j2k_destroy_compress(opj_j2k_t *j2k) {
-       int tileno;
+       for (i=0;i<l_image->numcomps;++i) {
+               l_tccp->m_dc_level_shift = 0;
+               ++l_tccp;
+       }
 
-       if(!j2k) return;
-       if(j2k->cp != NULL) {
-               opj_cp_t *cp = j2k->cp;
+       if (l_tcp->m_mct_decoding_matrix) {
+               opj_free(l_tcp->m_mct_decoding_matrix);
+               l_tcp->m_mct_decoding_matrix = 00;
+       }
 
-               if(cp->comment) {
-                       opj_free(cp->comment);
+       for (i=0;i<l_nb_stages;++i) {
+               opj_read_bytes(p_header_data,&l_tmp,1);
+               ++p_header_data;
+
+               if (! j2k_add_mct(l_tcp,p_j2k->m_private_image,l_tmp)) {
+                       return OPJ_FALSE;
                }
-               if(cp->matrice) {
-                       opj_free(cp->matrice);
-               }
-               for (tileno = 0; tileno < cp->tw * cp->th; tileno++) {
-                       opj_free(cp->tcps[tileno].tccps);
-               }
-               opj_free(cp->tcps);
-               opj_free(cp);
        }
 
-       opj_free(j2k);
+       return OPJ_TRUE;
 }
 
-void j2k_setup_encoder(opj_j2k_t *j2k, opj_cparameters_t *parameters, opj_image_t *image) {
-       int i, j, tileno, numpocs_tile;
-       opj_cp_t *cp = NULL;
+opj_bool j2k_add_mct(opj_tcp_v2_t * p_tcp, opj_image_t * p_image, OPJ_UINT32 p_index)
+{
+       OPJ_UINT32 i;
+       opj_simple_mcc_decorrelation_data_t * l_mcc_record;
+       opj_mct_data_t * l_deco_array, * l_offset_array;
+       OPJ_UINT32 l_data_size,l_mct_size, l_offset_size;
+       OPJ_UINT32 l_nb_elem;
+       OPJ_UINT32 * l_offset_data, * l_current_offset_data;
+       opj_tccp_t * l_tccp;
 
-       if(!j2k || !parameters || ! image) {
-               return;
+       /* preconditions */
+       assert(p_tcp != 00);
+
+       l_mcc_record = p_tcp->m_mcc_records;
+
+       for (i=0;i<p_tcp->m_nb_mcc_records;++i) {
+               if (l_mcc_record->m_index == p_index) {
+                       break;
+               }
        }
 
-       /* create and initialize the coding parameters structure */
-       cp = (opj_cp_t*) opj_calloc(1, sizeof(opj_cp_t));
+       if (i==p_tcp->m_nb_mcc_records) {
+               /** element discarded **/
+               return OPJ_TRUE;
+       }
 
-       /* keep a link to cp so that we can destroy it later in j2k_destroy_compress */
-       j2k->cp = cp;
+       if (l_mcc_record->m_nb_comps != p_image->numcomps) {
+               /** do not support number of comps != image */
+               return OPJ_TRUE;
+       }
 
-       /* set default values for cp */
-       cp->tw = 1;
-       cp->th = 1;
+       l_deco_array = l_mcc_record->m_decorrelation_array;
 
-       /* 
-       copy user encoding parameters 
-       */
-       cp->cinema = parameters->cp_cinema;
-       cp->max_comp_size =     parameters->max_comp_size;
-       cp->rsiz   = parameters->cp_rsiz;
-       cp->disto_alloc = parameters->cp_disto_alloc;
-       cp->fixed_alloc = parameters->cp_fixed_alloc;
-       cp->fixed_quality = parameters->cp_fixed_quality;
+       if (l_deco_array) {
+               l_data_size = MCT_ELEMENT_SIZE[l_deco_array->m_element_type] * p_image->numcomps * p_image->numcomps;
+               if (l_deco_array->m_data_size != l_data_size) {
+                       return OPJ_FALSE;
+               }
 
-       /* mod fixed_quality */
-       if(parameters->cp_matrice) {
-               size_t array_size = parameters->tcp_numlayers * parameters->numresolution * 3 * sizeof(int);
-               cp->matrice = (int *) opj_malloc(array_size);
-               memcpy(cp->matrice, parameters->cp_matrice, array_size);
+               l_nb_elem = p_image->numcomps * p_image->numcomps;
+               l_mct_size = l_nb_elem * sizeof(OPJ_FLOAT32);
+               p_tcp->m_mct_decoding_matrix = (OPJ_FLOAT32*)opj_malloc(l_mct_size);
+
+               if (! p_tcp->m_mct_decoding_matrix ) {
+                       return OPJ_FALSE;
+               }
+
+               j2k_mct_read_functions_to_float[l_deco_array->m_element_type](l_deco_array->m_data,p_tcp->m_mct_decoding_matrix,l_nb_elem);
        }
 
-       /* tiles */
-       cp->tdx = parameters->cp_tdx;
-       cp->tdy = parameters->cp_tdy;
+       l_offset_array = l_mcc_record->m_offset_array;
 
-       /* tile offset */
-       cp->tx0 = parameters->cp_tx0;
-       cp->ty0 = parameters->cp_ty0;
+       if (l_offset_array) {
+               l_data_size = MCT_ELEMENT_SIZE[l_offset_array->m_element_type] * p_image->numcomps;
+               if (l_offset_array->m_data_size != l_data_size) {
+                       return OPJ_FALSE;
+               }
 
-       /* comment string */
-       if(parameters->cp_comment) {
-               cp->comment = (char*)opj_malloc(strlen(parameters->cp_comment) + 1);
-               if(cp->comment) {
-                       strcpy(cp->comment, parameters->cp_comment);
+               l_nb_elem = p_image->numcomps;
+               l_offset_size = l_nb_elem * sizeof(OPJ_UINT32);
+               l_offset_data = (OPJ_UINT32*)opj_malloc(l_offset_size);
+
+               if (! l_offset_data ) {
+                       return OPJ_FALSE;
                }
-       }
 
-       /*
-       calculate other encoding parameters
-       */
+               j2k_mct_read_functions_to_int32[l_offset_array->m_element_type](l_offset_array->m_data,l_offset_data,l_nb_elem);
 
-       if (parameters->tile_size_on) {
-               cp->tw = int_ceildiv(image->x1 - cp->tx0, cp->tdx);
-               cp->th = int_ceildiv(image->y1 - cp->ty0, cp->tdy);
-       } else {
-               cp->tdx = image->x1 - cp->tx0;
-               cp->tdy = image->y1 - cp->ty0;
-       }
+               l_tccp = p_tcp->tccps;
+               l_current_offset_data = l_offset_data;
 
-       if(parameters->tp_on){
-               cp->tp_flag = parameters->tp_flag;
-               cp->tp_on = 1;
-       }
-       
-       cp->img_size = 0;
-       for(i=0;i<image->numcomps ;i++){
-       cp->img_size += (image->comps[i].w *image->comps[i].h * image->comps[i].prec);
+               for (i=0;i<p_image->numcomps;++i) {
+                       l_tccp->m_dc_level_shift = *(l_current_offset_data++);
+                       ++l_tccp;
+               }
+
+               opj_free(l_offset_data);
        }
 
+       return OPJ_TRUE;
+}
 
-#ifdef USE_JPWL
-       /*
-       calculate JPWL encoding parameters
-       */
+/**
+ * Reads a CBD marker (Component bit depth definition)
+ * @param      p_header_data   the data contained in the CBD box.
+ * @param      p_j2k                   the jpeg2000 codec.
+ * @param      p_header_size   the size of the data contained in the CBD marker.
+ * @param      p_manager               the user event manager.
+*/
+opj_bool j2k_read_cbd (        opj_j2k_v2_t *p_j2k,
+                                               OPJ_BYTE * p_header_data,
+                                               OPJ_UINT32 p_header_size,
+                                               struct opj_event_mgr * p_manager)
+{
+       OPJ_UINT32 l_nb_comp,l_num_comp;
+       OPJ_UINT32 l_comp_def;
+       OPJ_UINT32 i;
+       opj_image_comp_t * l_comp = 00;
 
-       if (parameters->jpwl_epc_on) {
-               int i;
+       /* preconditions */
+       assert(p_header_data != 00);
+       assert(p_j2k != 00);
+       assert(p_manager != 00);
 
-               /* set JPWL on */
-               cp->epc_on = OPJ_TRUE;
-               cp->info_on = OPJ_FALSE; /* no informative technique */
+       l_num_comp = p_j2k->m_private_image->numcomps;
 
-               /* set EPB on */
-               if ((parameters->jpwl_hprot_MH > 0) || (parameters->jpwl_hprot_TPH[0] > 0)) {
-                       cp->epb_on = OPJ_TRUE;
-                       
-                       cp->hprot_MH = parameters->jpwl_hprot_MH;
-                       for (i = 0; i < JPWL_MAX_NO_TILESPECS; i++) {
-                               cp->hprot_TPH_tileno[i] = parameters->jpwl_hprot_TPH_tileno[i];
-                               cp->hprot_TPH[i] = parameters->jpwl_hprot_TPH[i];
-                       }
-                       /* if tile specs are not specified, copy MH specs */
-                       if (cp->hprot_TPH[0] == -1) {
-                               cp->hprot_TPH_tileno[0] = 0;
-                               cp->hprot_TPH[0] = parameters->jpwl_hprot_MH;
-                       }
-                       for (i = 0; i < JPWL_MAX_NO_PACKSPECS; i++) {
-                               cp->pprot_tileno[i] = parameters->jpwl_pprot_tileno[i];
-                               cp->pprot_packno[i] = parameters->jpwl_pprot_packno[i];
-                               cp->pprot[i] = parameters->jpwl_pprot[i];
-                       }
-               }
+       if (p_header_size != (p_j2k->m_private_image->numcomps + 2)) {
+               opj_event_msg_v2(p_manager, EVT_ERROR, "Crror reading CBD marker\n");
+               return OPJ_FALSE;
+       }
 
-               /* set ESD writing */
-               if ((parameters->jpwl_sens_size == 1) || (parameters->jpwl_sens_size == 2)) {
-                       cp->esd_on = OPJ_TRUE;
+       opj_read_bytes(p_header_data,&l_nb_comp,2);                             /* Ncbd */
+       p_header_data+=2;
 
-                       cp->sens_size = parameters->jpwl_sens_size;
-                       cp->sens_addr = parameters->jpwl_sens_addr;
-                       cp->sens_range = parameters->jpwl_sens_range;
+       if (l_nb_comp != l_num_comp) {
+               opj_event_msg_v2(p_manager, EVT_ERROR, "Crror reading CBD marker\n");
+               return OPJ_FALSE;
+       }
 
-                       cp->sens_MH = parameters->jpwl_sens_MH;
-                       for (i = 0; i < JPWL_MAX_NO_TILESPECS; i++) {
-                               cp->sens_TPH_tileno[i] = parameters->jpwl_sens_TPH_tileno[i];
-                               cp->sens_TPH[i] = parameters->jpwl_sens_TPH[i];
-                       }
-               }
+       l_comp = p_j2k->m_private_image->comps;
+       for (i=0;i<l_num_comp;++i) {
+               opj_read_bytes(p_header_data,&l_comp_def,1);                    /* Component bit depth */
+               ++p_header_data;
+        l_comp->sgnd = (l_comp_def>>7) & 1;
+               l_comp->prec = (l_comp_def&0x7f) + 1;
+               ++l_comp;
+       }
 
-               /* always set RED writing to false: we are at the encoder */
-               cp->red_on = OPJ_FALSE;
+       return OPJ_TRUE;
+}
 
-       } else {
-               cp->epc_on = OPJ_FALSE;
+
+/* ----------------------------------------------------------------------- */
+/* J2K / JPT decoder interface                                             */
+/* ----------------------------------------------------------------------- */
+
+opj_j2k_t* j2k_create_decompress(opj_common_ptr cinfo) {
+       opj_j2k_t *j2k = (opj_j2k_t*) opj_calloc(1, sizeof(opj_j2k_t));
+       if(!j2k)
+               return NULL;
+
+       j2k->default_tcp = (opj_tcp_t*) opj_calloc(1, sizeof(opj_tcp_t));
+       if(!j2k->default_tcp) {
+               opj_free(j2k);
+               return NULL;
        }
-#endif /* USE_JPWL */
 
+       j2k->cinfo = cinfo;
+       j2k->tile_data = NULL;
 
-       /* initialize the mutiple tiles */
-       /* ---------------------------- */
-       cp->tcps = (opj_tcp_t*) opj_calloc(cp->tw * cp->th, sizeof(opj_tcp_t));
+       return j2k;
+}
 
-       for (tileno = 0; tileno < cp->tw * cp->th; tileno++) {
-               opj_tcp_t *tcp = &cp->tcps[tileno];
-               tcp->numlayers = parameters->tcp_numlayers;
-               for (j = 0; j < tcp->numlayers; j++) {
-                       if(cp->cinema){
-                               if (cp->fixed_quality) {
-                                       tcp->distoratio[j] = parameters->tcp_distoratio[j];
+void j2k_destroy_decompress(opj_j2k_t *j2k) {
+       int i = 0;
+
+       if(j2k->tile_len != NULL) {
+               opj_free(j2k->tile_len);
+       }
+       if(j2k->tile_data != NULL) {
+               opj_free(j2k->tile_data);
+       }
+       if(j2k->default_tcp != NULL) {
+               opj_tcp_t *default_tcp = j2k->default_tcp;
+               if(default_tcp->ppt_data_first != NULL) {
+                       opj_free(default_tcp->ppt_data_first);
+               }
+               if(j2k->default_tcp->tccps != NULL) {
+                       opj_free(j2k->default_tcp->tccps);
+               }
+               opj_free(j2k->default_tcp);
+       }
+       if(j2k->cp != NULL) {
+               opj_cp_t *cp = j2k->cp;
+               if(cp->tcps != NULL) {
+                       for(i = 0; i < cp->tw * cp->th; i++) {
+                               if(cp->tcps[i].ppt_data_first != NULL) {
+                                       opj_free(cp->tcps[i].ppt_data_first);
                                }
-                               tcp->rates[j] = parameters->tcp_rates[j];
-                       }else{
-                               if (cp->fixed_quality) {        /* add fixed_quality */
-                                       tcp->distoratio[j] = parameters->tcp_distoratio[j];
-                               } else {
-                                       tcp->rates[j] = parameters->tcp_rates[j];
+                               if(cp->tcps[i].tccps != NULL) {
+                                       opj_free(cp->tcps[i].tccps);
                                }
                        }
+                       opj_free(cp->tcps);
                }
-               tcp->csty = parameters->csty;
-               tcp->prg = parameters->prog_order;
-               tcp->mct = parameters->tcp_mct; 
-
-               numpocs_tile = 0;
-               tcp->POC = 0;
-               if (parameters->numpocs) {
-                       /* initialisation of POC */
-                       tcp->POC = 1;
-                       for (i = 0; i < parameters->numpocs; i++) {
-                               if((tileno == parameters->POC[i].tile - 1) || (parameters->POC[i].tile == -1)) {
-                                       opj_poc_t *tcp_poc = &tcp->pocs[numpocs_tile];
-                                       tcp_poc->resno0         = parameters->POC[numpocs_tile].resno0;
-                                       tcp_poc->compno0        = parameters->POC[numpocs_tile].compno0;
-                                       tcp_poc->layno1         = parameters->POC[numpocs_tile].layno1;
-                                       tcp_poc->resno1         = parameters->POC[numpocs_tile].resno1;
-                                       tcp_poc->compno1        = parameters->POC[numpocs_tile].compno1;
-                                       tcp_poc->prg1           = parameters->POC[numpocs_tile].prg1;
-                                       tcp_poc->tile           = parameters->POC[numpocs_tile].tile;
-                                       numpocs_tile++;
-                               }
-                       }
-                       tcp->numpocs = numpocs_tile -1 ;
-               }else{ 
-                       tcp->numpocs = 0;
+               if(cp->ppm_data_first != NULL) {
+                       opj_free(cp->ppm_data_first);
+               }
+               if(cp->tileno != NULL) {
+                       opj_free(cp->tileno);  
+               }
+               if(cp->comment != NULL) {
+                       opj_free(cp->comment);
                }
 
-               tcp->tccps = (opj_tccp_t*) opj_calloc(image->numcomps, sizeof(opj_tccp_t));
+               opj_free(cp);
+       }
+       opj_free(j2k);
+}
+
+void j2k_setup_decoder(opj_j2k_t *j2k, opj_dparameters_t *parameters) {
+       if(j2k && parameters) {
+               /* create and initialize the coding parameters structure */
+               opj_cp_t *cp = (opj_cp_t*) opj_calloc(1, sizeof(opj_cp_t));
+               cp->reduce = parameters->cp_reduce;     
+               cp->layer = parameters->cp_layer;
+               cp->limit_decoding = parameters->cp_limit_decoding;
+
+#ifdef USE_JPWL
+               cp->correct = parameters->jpwl_correct;
+               cp->exp_comps = parameters->jpwl_exp_comps;
+               cp->max_tiles = parameters->jpwl_max_tiles;
+#endif /* USE_JPWL */
+
+
+               /* keep a link to cp so that we can destroy it later in j2k_destroy_decompress */
+               j2k->cp = cp;
+       }
+}
+
+void j2k_setup_decoder_v2(opj_j2k_v2_t *j2k, opj_dparameters_t *parameters)
+{
+       if(j2k && parameters) {
+               j2k->m_cp.m_specific_param.m_dec.m_layer = parameters->cp_layer;
+               j2k->m_cp.m_specific_param.m_dec.m_reduce = parameters->cp_reduce;
+
+#ifdef USE_JPWL
+               j2k->m_cp.correct = parameters->jpwl_correct;
+               j2k->m_cp.exp_comps = parameters->jpwl_exp_comps;
+               j2k->m_cp.max_tiles = parameters->jpwl_max_tiles;
+#endif /* USE_JPWL */
+       }
+}
+
+opj_image_t* j2k_decode(opj_j2k_t *j2k, opj_cio_t *cio, opj_codestream_info_t *cstr_info) {
+       opj_image_t *image = NULL;
+
+       opj_common_ptr cinfo = j2k->cinfo;      
+
+       j2k->cio = cio;
+       j2k->cstr_info = cstr_info;
+       if (cstr_info)
+               memset(cstr_info, 0, sizeof(opj_codestream_info_t));
+
+       /* create an empty image */
+       image = opj_image_create0();
+       j2k->image = image;
+
+       j2k->state = J2K_STATE_MHSOC;
+
+       for (;;) {
+               opj_dec_mstabent_t *e;
+               int id = cio_read(cio, 2);
+
+#ifdef USE_JPWL
+               /* we try to honor JPWL correction power */
+               if (j2k->cp->correct) {
+
+                       int orig_pos = cio_tell(cio);
+                       opj_bool status;
+
+                       /* call the corrector */
+                       status = jpwl_correct(j2k);
+
+                       /* go back to where you were */
+                       cio_seek(cio, orig_pos - 2);
+
+                       /* re-read the marker */
+                       id = cio_read(cio, 2);
+
+                       /* check whether it begins with ff */
+                       if (id >> 8 != 0xff) {
+                               opj_event_msg(cinfo, EVT_ERROR,
+                                       "JPWL: possible bad marker %x at %d\n",
+                                       id, cio_tell(cio) - 2);
+                               if (!JPWL_ASSUME) {
+                                       opj_image_destroy(image);
+                                       opj_event_msg(cinfo, EVT_ERROR, "JPWL: giving up\n");
+                                       return 0;
+                               }
+                               /* we try to correct */
+                               id = id | 0xff00;
+                               cio_seek(cio, cio_tell(cio) - 2);
+                               cio_write(cio, id, 2);
+                               opj_event_msg(cinfo, EVT_WARNING, "- trying to adjust this\n"
+                                       "- setting marker to %x\n",
+                                       id);
+                       }
+
+               }
+#endif /* USE_JPWL */
+
+               if (id >> 8 != 0xff) {
+                       opj_image_destroy(image);
+                       opj_event_msg(cinfo, EVT_ERROR, "%.8x: expected a marker instead of %x\n", cio_tell(cio) - 2, id);
+                       return 0;
+               }
+               e = j2k_dec_mstab_lookup(id);
+               // Check if the marker is known
+               if (!(j2k->state & e->states)) {
+                       opj_image_destroy(image);
+                       opj_event_msg(cinfo, EVT_ERROR, "%.8x: unexpected marker %x\n", cio_tell(cio) - 2, id);
+                       return 0;
+               }
+               // Check if the decoding is limited to the main header
+               if (e->id == J2K_MS_SOT && j2k->cp->limit_decoding == LIMIT_TO_MAIN_HEADER) {
+                       opj_event_msg(cinfo, EVT_INFO, "Main Header decoded.\n");
+                       return image;
+               }               
+
+               if (e->handler) {
+                       (*e->handler)(j2k);
+               }
+               if (j2k->state & J2K_STATE_ERR) 
+                       return NULL;    
+
+               if (j2k->state == J2K_STATE_MT) {
+                       break;
+               }
+               if (j2k->state == J2K_STATE_NEOC) {
+                       break;
+               }
+       }
+       if (j2k->state == J2K_STATE_NEOC) {
+               j2k_read_eoc(j2k);
+       }
+
+       if (j2k->state != J2K_STATE_MT) {
+               opj_event_msg(cinfo, EVT_WARNING, "Incomplete bitstream\n");
+       }
+       return image;
+}
+
+/*
+* Read a JPT-stream and decode file
+*
+*/
+opj_image_t* j2k_decode_jpt_stream(opj_j2k_t *j2k, opj_cio_t *cio,  opj_codestream_info_t *cstr_info) {
+       opj_image_t *image = NULL;
+       opj_jpt_msg_header_t header;
+       int position;
+       opj_common_ptr cinfo = j2k->cinfo;
+
+       OPJ_ARG_NOT_USED(cstr_info);
+
+       j2k->cio = cio;
+
+       /* create an empty image */
+       image = opj_image_create0();
+       j2k->image = image;
+
+       j2k->state = J2K_STATE_MHSOC;
+       
+       /* Initialize the header */
+       jpt_init_msg_header(&header);
+       /* Read the first header of the message */
+       jpt_read_msg_header(cinfo, cio, &header);
+       
+       position = cio_tell(cio);
+       if (header.Class_Id != 6) {     /* 6 : Main header data-bin message */
+               opj_image_destroy(image);
+               opj_event_msg(cinfo, EVT_ERROR, "[JPT-stream] : Expecting Main header first [class_Id %d] !\n", header.Class_Id);
+               return 0;
+       }
+       
+       for (;;) {
+               opj_dec_mstabent_t *e = NULL;
+               int id;
+               
+               if (!cio_numbytesleft(cio)) {
+                       j2k_read_eoc(j2k);
+                       return image;
+               }
+               /* data-bin read -> need to read a new header */
+               if ((unsigned int) (cio_tell(cio) - position) == header.Msg_length) {
+                       jpt_read_msg_header(cinfo, cio, &header);
+                       position = cio_tell(cio);
+                       if (header.Class_Id != 4) {     /* 4 : Tile data-bin message */
+                               opj_image_destroy(image);
+                               opj_event_msg(cinfo, EVT_ERROR, "[JPT-stream] : Expecting Tile info !\n");
+                               return 0;
+                       }
+               }
+               
+               id = cio_read(cio, 2);
+               if (id >> 8 != 0xff) {
+                       opj_image_destroy(image);
+                       opj_event_msg(cinfo, EVT_ERROR, "%.8x: expected a marker instead of %x\n", cio_tell(cio) - 2, id);
+                       return 0;
+               }
+               e = j2k_dec_mstab_lookup(id);
+               if (!(j2k->state & e->states)) {
+                       opj_image_destroy(image);
+                       opj_event_msg(cinfo, EVT_ERROR, "%.8x: unexpected marker %x\n", cio_tell(cio) - 2, id);
+                       return 0;
+               }
+               if (e->handler) {
+                       (*e->handler)(j2k);
+               }
+               if (j2k->state == J2K_STATE_MT) {
+                       break;
+               }
+               if (j2k->state == J2K_STATE_NEOC) {
+                       break;
+               }
+       }
+       if (j2k->state == J2K_STATE_NEOC) {
+               j2k_read_eoc(j2k);
+       }
+       
+       if (j2k->state != J2K_STATE_MT) {
+               opj_event_msg(cinfo, EVT_WARNING, "Incomplete bitstream\n");
+       }
+
+       return image;
+}
+
+/* ----------------------------------------------------------------------- */
+/* J2K encoder interface                                                       */
+/* ----------------------------------------------------------------------- */
+
+opj_j2k_t* j2k_create_compress(opj_common_ptr cinfo) {
+       opj_j2k_t *j2k = (opj_j2k_t*) opj_calloc(1, sizeof(opj_j2k_t));
+       if(j2k) {
+               j2k->cinfo = cinfo;
+       }
+       return j2k;
+}
+
+opj_j2k_v2_t* j2k_create_compress_v2()
+{
+       opj_j2k_v2_t *l_j2k = (opj_j2k_v2_t*) opj_malloc(sizeof(opj_j2k_v2_t));
+       if (!l_j2k) {
+               return NULL;
+       }
+
+       memset(l_j2k,0,sizeof(opj_j2k_v2_t));
+
+       l_j2k->m_is_decoder = 0;
+       l_j2k->m_cp.m_is_decoder = 0;
+
+       l_j2k->m_specific_param.m_encoder.m_header_tile_data = (OPJ_BYTE *) opj_malloc(J2K_DEFAULT_HEADER_SIZE);
+       if (! l_j2k->m_specific_param.m_encoder.m_header_tile_data) {
+               j2k_destroy(l_j2k);
+               return NULL;
+       }
+
+       l_j2k->m_specific_param.m_encoder.m_header_tile_data_size = J2K_DEFAULT_HEADER_SIZE;
+
+       // validation list creation
+       l_j2k->m_validation_list = opj_procedure_list_create();
+       if (! l_j2k->m_validation_list) {
+               j2k_destroy(l_j2k);
+               return NULL;
+       }
+
+       // execution list creation
+       l_j2k->m_procedure_list = opj_procedure_list_create();
+       if (! l_j2k->m_procedure_list) {
+               j2k_destroy(l_j2k);
+               return NULL;
+       }
+
+       return l_j2k;
+}
+
+void j2k_destroy_compress(opj_j2k_t *j2k) {
+       int tileno;
+
+       if(!j2k) return;
+       if(j2k->cp != NULL) {
+               opj_cp_t *cp = j2k->cp;
+
+               if(cp->comment) {
+                       opj_free(cp->comment);
+               }
+               if(cp->matrice) {
+                       opj_free(cp->matrice);
+               }
+               for (tileno = 0; tileno < cp->tw * cp->th; tileno++) {
+                       opj_free(cp->tcps[tileno].tccps);
+               }
+               opj_free(cp->tcps);
+               opj_free(cp);
+       }
+
+       opj_free(j2k);
+}
+
+void j2k_setup_encoder(opj_j2k_t *j2k, opj_cparameters_t *parameters, opj_image_t *image) {
+       int i, j, tileno, numpocs_tile;
+       opj_cp_t *cp = NULL;
+
+       if(!j2k || !parameters || ! image) {
+               return;
+       }
+
+       /* create and initialize the coding parameters structure */
+       cp = (opj_cp_t*) opj_calloc(1, sizeof(opj_cp_t));
+
+       /* keep a link to cp so that we can destroy it later in j2k_destroy_compress */
+       j2k->cp = cp;
+
+       /* set default values for cp */
+       cp->tw = 1;
+       cp->th = 1;
+
+       /* 
+       copy user encoding parameters 
+       */
+       cp->cinema = parameters->cp_cinema;
+       cp->max_comp_size =     parameters->max_comp_size;
+       cp->rsiz   = parameters->cp_rsiz;
+       cp->disto_alloc = parameters->cp_disto_alloc;
+       cp->fixed_alloc = parameters->cp_fixed_alloc;
+       cp->fixed_quality = parameters->cp_fixed_quality;
+
+       /* mod fixed_quality */
+       if(parameters->cp_matrice) {
+               size_t array_size = parameters->tcp_numlayers * parameters->numresolution * 3 * sizeof(int);
+               cp->matrice = (int *) opj_malloc(array_size);
+               memcpy(cp->matrice, parameters->cp_matrice, array_size);
+       }
+
+       /* tiles */
+       cp->tdx = parameters->cp_tdx;
+       cp->tdy = parameters->cp_tdy;
+
+       /* tile offset */
+       cp->tx0 = parameters->cp_tx0;
+       cp->ty0 = parameters->cp_ty0;
+
+       /* comment string */
+       if(parameters->cp_comment) {
+               cp->comment = (char*)opj_malloc(strlen(parameters->cp_comment) + 1);
+               if(cp->comment) {
+                       strcpy(cp->comment, parameters->cp_comment);
+               }
+       }
+
+       /*
+       calculate other encoding parameters
+       */
+
+       if (parameters->tile_size_on) {
+               cp->tw = int_ceildiv(image->x1 - cp->tx0, cp->tdx);
+               cp->th = int_ceildiv(image->y1 - cp->ty0, cp->tdy);
+       } else {
+               cp->tdx = image->x1 - cp->tx0;
+               cp->tdy = image->y1 - cp->ty0;
+       }
+
+       if(parameters->tp_on){
+               cp->tp_flag = parameters->tp_flag;
+               cp->tp_on = 1;
+       }
+       
+       cp->img_size = 0;
+       for(i=0;i<image->numcomps ;i++){
+       cp->img_size += (image->comps[i].w *image->comps[i].h * image->comps[i].prec);
+       }
+
+
+#ifdef USE_JPWL
+       /*
+       calculate JPWL encoding parameters
+       */
+
+       if (parameters->jpwl_epc_on) {
+               int i;
+
+               /* set JPWL on */
+               cp->epc_on = OPJ_TRUE;
+               cp->info_on = OPJ_FALSE; /* no informative technique */
+
+               /* set EPB on */
+               if ((parameters->jpwl_hprot_MH > 0) || (parameters->jpwl_hprot_TPH[0] > 0)) {
+                       cp->epb_on = OPJ_TRUE;
+                       
+                       cp->hprot_MH = parameters->jpwl_hprot_MH;
+                       for (i = 0; i < JPWL_MAX_NO_TILESPECS; i++) {
+                               cp->hprot_TPH_tileno[i] = parameters->jpwl_hprot_TPH_tileno[i];
+                               cp->hprot_TPH[i] = parameters->jpwl_hprot_TPH[i];
+                       }
+                       /* if tile specs are not specified, copy MH specs */
+                       if (cp->hprot_TPH[0] == -1) {
+                               cp->hprot_TPH_tileno[0] = 0;
+                               cp->hprot_TPH[0] = parameters->jpwl_hprot_MH;
+                       }
+                       for (i = 0; i < JPWL_MAX_NO_PACKSPECS; i++) {
+                               cp->pprot_tileno[i] = parameters->jpwl_pprot_tileno[i];
+                               cp->pprot_packno[i] = parameters->jpwl_pprot_packno[i];
+                               cp->pprot[i] = parameters->jpwl_pprot[i];
+                       }
+               }
+
+               /* set ESD writing */
+               if ((parameters->jpwl_sens_size == 1) || (parameters->jpwl_sens_size == 2)) {
+                       cp->esd_on = OPJ_TRUE;
+
+                       cp->sens_size = parameters->jpwl_sens_size;
+                       cp->sens_addr = parameters->jpwl_sens_addr;
+                       cp->sens_range = parameters->jpwl_sens_range;
+
+                       cp->sens_MH = parameters->jpwl_sens_MH;
+                       for (i = 0; i < JPWL_MAX_NO_TILESPECS; i++) {
+                               cp->sens_TPH_tileno[i] = parameters->jpwl_sens_TPH_tileno[i];
+                               cp->sens_TPH[i] = parameters->jpwl_sens_TPH[i];
+                       }
+               }
+
+               /* always set RED writing to false: we are at the encoder */
+               cp->red_on = OPJ_FALSE;
+
+       } else {
+               cp->epc_on = OPJ_FALSE;
+       }
+#endif /* USE_JPWL */
+
+
+       /* initialize the mutiple tiles */
+       /* ---------------------------- */
+       cp->tcps = (opj_tcp_t*) opj_calloc(cp->tw * cp->th, sizeof(opj_tcp_t));
+
+       for (tileno = 0; tileno < cp->tw * cp->th; tileno++) {
+               opj_tcp_t *tcp = &cp->tcps[tileno];
+               tcp->numlayers = parameters->tcp_numlayers;
+               for (j = 0; j < tcp->numlayers; j++) {
+                       if(cp->cinema){
+                               if (cp->fixed_quality) {
+                                       tcp->distoratio[j] = parameters->tcp_distoratio[j];
+                               }
+                               tcp->rates[j] = parameters->tcp_rates[j];
+                       }else{
+                               if (cp->fixed_quality) {        /* add fixed_quality */
+                                       tcp->distoratio[j] = parameters->tcp_distoratio[j];
+                               } else {
+                                       tcp->rates[j] = parameters->tcp_rates[j];
+                               }
+                       }
+               }
+               tcp->csty = parameters->csty;
+               tcp->prg = parameters->prog_order;
+               tcp->mct = parameters->tcp_mct; 
+
+               numpocs_tile = 0;
+               tcp->POC = 0;
+               if (parameters->numpocs) {
+                       /* initialisation of POC */
+                       tcp->POC = 1;
+                       for (i = 0; i < parameters->numpocs; i++) {
+                               if((tileno == parameters->POC[i].tile - 1) || (parameters->POC[i].tile == -1)) {
+                                       opj_poc_t *tcp_poc = &tcp->pocs[numpocs_tile];
+                                       tcp_poc->resno0         = parameters->POC[numpocs_tile].resno0;
+                                       tcp_poc->compno0        = parameters->POC[numpocs_tile].compno0;
+                                       tcp_poc->layno1         = parameters->POC[numpocs_tile].layno1;
+                                       tcp_poc->resno1         = parameters->POC[numpocs_tile].resno1;
+                                       tcp_poc->compno1        = parameters->POC[numpocs_tile].compno1;
+                                       tcp_poc->prg1           = parameters->POC[numpocs_tile].prg1;
+                                       tcp_poc->tile           = parameters->POC[numpocs_tile].tile;
+                                       numpocs_tile++;
+                               }
+                       }
+                       tcp->numpocs = numpocs_tile -1 ;
+               }else{ 
+                       tcp->numpocs = 0;
+               }
+
+               tcp->tccps = (opj_tccp_t*) opj_calloc(image->numcomps, sizeof(opj_tccp_t));
 
                for (i = 0; i < image->numcomps; i++) {
                        opj_tccp_t *tccp = &tcp->tccps[i];
@@ -4564,1836 +5477,3039 @@ void j2k_setup_encoder(opj_j2k_t *j2k, opj_cparameters_t *parameters, opj_image_
                                tccp->roishift = 0;
                        }
 
-                       if(parameters->cp_cinema)
-                       {
-                               //Precinct size for lowest frequency subband=128
-                               tccp->prcw[0] = 7;
-                               tccp->prch[0] = 7;
-                               //Precinct size at all other resolutions = 256
-                               for (j = 1; j < tccp->numresolutions; j++) {
-                                       tccp->prcw[j] = 8;
-                                       tccp->prch[j] = 8;
+                       if(parameters->cp_cinema)
+                       {
+                               //Precinct size for lowest frequency subband=128
+                               tccp->prcw[0] = 7;
+                               tccp->prch[0] = 7;
+                               //Precinct size at all other resolutions = 256
+                               for (j = 1; j < tccp->numresolutions; j++) {
+                                       tccp->prcw[j] = 8;
+                                       tccp->prch[j] = 8;
+                               }
+                       }else{
+                               if (parameters->csty & J2K_CCP_CSTY_PRT) {
+                                       int p = 0;
+                                       for (j = tccp->numresolutions - 1; j >= 0; j--) {
+                                               if (p < parameters->res_spec) {
+                                                       
+                                                       if (parameters->prcw_init[p] < 1) {
+                                                               tccp->prcw[j] = 1;
+                                                       } else {
+                                                               tccp->prcw[j] = int_floorlog2(parameters->prcw_init[p]);
+                                                       }
+                                                       
+                                                       if (parameters->prch_init[p] < 1) {
+                                                               tccp->prch[j] = 1;
+                                                       }else {
+                                                               tccp->prch[j] = int_floorlog2(parameters->prch_init[p]);
+                                                       }
+
+                                               } else {
+                                                       int res_spec = parameters->res_spec;
+                                                       int size_prcw = parameters->prcw_init[res_spec - 1] >> (p - (res_spec - 1));
+                                                       int size_prch = parameters->prch_init[res_spec - 1] >> (p - (res_spec - 1));
+                                                       
+                                                       if (size_prcw < 1) {
+                                                               tccp->prcw[j] = 1;
+                                                       } else {
+                                                               tccp->prcw[j] = int_floorlog2(size_prcw);
+                                                       }
+                                                       
+                                                       if (size_prch < 1) {
+                                                               tccp->prch[j] = 1;
+                                                       } else {
+                                                               tccp->prch[j] = int_floorlog2(size_prch);
+                                                       }
+                                               }
+                                               p++;
+                                               /*printf("\nsize precinct for level %d : %d,%d\n", j,tccp->prcw[j], tccp->prch[j]); */
+                                       }       //end for
+                               } else {
+                                       for (j = 0; j < tccp->numresolutions; j++) {
+                                               tccp->prcw[j] = 15;
+                                               tccp->prch[j] = 15;
+                                       }
+                               }
+                       }
+
+                       dwt_calc_explicit_stepsizes(tccp, image->comps[i].prec);
+               }
+       }
+}
+
+opj_bool j2k_encode(opj_j2k_t *j2k, opj_cio_t *cio, opj_image_t *image, opj_codestream_info_t *cstr_info) {
+       int tileno, compno;
+       opj_cp_t *cp = NULL;
+
+       opj_tcd_t *tcd = NULL;  /* TCD component */
+
+       j2k->cio = cio; 
+       j2k->image = image;
+
+       cp = j2k->cp;
+
+       /* INDEX >> */
+       j2k->cstr_info = cstr_info;
+       if (cstr_info) {
+               int compno;
+               cstr_info->tile = (opj_tile_info_t *) opj_malloc(cp->tw * cp->th * sizeof(opj_tile_info_t));
+               cstr_info->image_w = image->x1 - image->x0;
+               cstr_info->image_h = image->y1 - image->y0;
+               cstr_info->prog = (&cp->tcps[0])->prg;
+               cstr_info->tw = cp->tw;
+               cstr_info->th = cp->th;
+               cstr_info->tile_x = cp->tdx;    /* new version parser */
+               cstr_info->tile_y = cp->tdy;    /* new version parser */
+               cstr_info->tile_Ox = cp->tx0;   /* new version parser */
+               cstr_info->tile_Oy = cp->ty0;   /* new version parser */
+               cstr_info->numcomps = image->numcomps;
+               cstr_info->numlayers = (&cp->tcps[0])->numlayers;
+               cstr_info->numdecompos = (int*) opj_malloc(image->numcomps * sizeof(int));
+               for (compno=0; compno < image->numcomps; compno++) {
+                       cstr_info->numdecompos[compno] = (&cp->tcps[0])->tccps->numresolutions - 1;
+               }
+               cstr_info->D_max = 0.0;         /* ADD Marcela */
+               cstr_info->main_head_start = cio_tell(cio); /* position of SOC */
+               cstr_info->maxmarknum = 100;
+               cstr_info->marker = (opj_marker_info_t *) opj_malloc(cstr_info->maxmarknum * sizeof(opj_marker_info_t));
+               cstr_info->marknum = 0;
+       }
+       /* << INDEX */
+
+       j2k_write_soc(j2k);
+       j2k_write_siz(j2k);
+       j2k_write_cod(j2k);
+       j2k_write_qcd(j2k);
+
+       if(cp->cinema){
+               for (compno = 1; compno < image->numcomps; compno++) {
+                       j2k_write_coc(j2k, compno);
+                       j2k_write_qcc(j2k, compno);
+               }
+       }
+
+       for (compno = 0; compno < image->numcomps; compno++) {
+               opj_tcp_t *tcp = &cp->tcps[0];
+               if (tcp->tccps[compno].roishift)
+                       j2k_write_rgn(j2k, compno, 0);
+       }
+       if (cp->comment != NULL) {
+               j2k_write_com(j2k);
+       }
+
+       j2k->totnum_tp = j2k_calculate_tp(cp,image->numcomps,image,j2k);
+       /* TLM Marker*/
+       if(cp->cinema){
+               j2k_write_tlm(j2k);
+               if (cp->cinema == CINEMA4K_24) {
+                       j2k_write_poc(j2k);
+               }
+       }
+
+       /* uncomment only for testing JPSEC marker writing */
+       /* j2k_write_sec(j2k); */
+
+       /* INDEX >> */
+       if(cstr_info) {
+               cstr_info->main_head_end = cio_tell(cio) - 1;
+       }
+       /* << INDEX */
+       /**** Main Header ENDS here ***/
+
+       /* create the tile encoder */
+       tcd = tcd_create(j2k->cinfo);
+
+       /* encode each tile */
+       for (tileno = 0; tileno < cp->tw * cp->th; tileno++) {
+               int pino;
+               int tilepartno=0;
+               /* UniPG>> */
+               int acc_pack_num = 0;
+               /* <<UniPG */
+
+
+               opj_tcp_t *tcp = &cp->tcps[tileno];
+               opj_event_msg(j2k->cinfo, EVT_INFO, "tile number %d / %d\n", tileno + 1, cp->tw * cp->th);
+
+               j2k->curtileno = tileno;
+               j2k->cur_tp_num = 0;
+               tcd->cur_totnum_tp = j2k->cur_totnum_tp[j2k->curtileno];
+               /* initialisation before tile encoding  */
+               if (tileno == 0) {
+                       tcd_malloc_encode(tcd, image, cp, j2k->curtileno);
+               } else {
+                       tcd_init_encode(tcd, image, cp, j2k->curtileno);
+               }
+
+               /* INDEX >> */
+               if(cstr_info) {
+                       cstr_info->tile[j2k->curtileno].start_pos = cio_tell(cio) + j2k->pos_correction;
+                       cstr_info->tile[j2k->curtileno].maxmarknum = 10;
+                       cstr_info->tile[j2k->curtileno].marker = (opj_marker_info_t *) opj_malloc(cstr_info->tile[j2k->curtileno].maxmarknum * sizeof(opj_marker_info_t));
+                       cstr_info->tile[j2k->curtileno].marknum = 0;
+               }
+               /* << INDEX */
+
+               for(pino = 0; pino <= tcp->numpocs; pino++) {
+                       int tot_num_tp;
+                       tcd->cur_pino=pino;
+
+                       /*Get number of tile parts*/
+                       tot_num_tp = j2k_get_num_tp(cp,pino,tileno);
+                       tcd->tp_pos = cp->tp_pos;
+
+                       for(tilepartno = 0; tilepartno < tot_num_tp ; tilepartno++){
+                               j2k->tp_num = tilepartno;
+                               /* INDEX >> */
+                               if(cstr_info)
+                                       cstr_info->tile[j2k->curtileno].tp[j2k->cur_tp_num].tp_start_pos =
+                                       cio_tell(cio) + j2k->pos_correction;
+                               /* << INDEX */
+                               j2k_write_sot(j2k);
+
+                               if(j2k->cur_tp_num == 0 && cp->cinema == 0){
+                                       for (compno = 1; compno < image->numcomps; compno++) {
+                                               j2k_write_coc(j2k, compno);
+                                               j2k_write_qcc(j2k, compno);
+                                       }
+                                       if (cp->tcps[tileno].numpocs) {
+                                               j2k_write_poc(j2k);
+                                       }
+                               }
+
+                               /* INDEX >> */
+                               if(cstr_info)
+                                       cstr_info->tile[j2k->curtileno].tp[j2k->cur_tp_num].tp_end_header =
+                                       cio_tell(cio) + j2k->pos_correction + 1;
+                               /* << INDEX */
+
+                               j2k_write_sod(j2k, tcd);
+
+                               /* INDEX >> */
+                               if(cstr_info) {
+                                       cstr_info->tile[j2k->curtileno].tp[j2k->cur_tp_num].tp_end_pos =
+                                               cio_tell(cio) + j2k->pos_correction - 1;
+                                       cstr_info->tile[j2k->curtileno].tp[j2k->cur_tp_num].tp_start_pack =
+                                               acc_pack_num;
+                                       cstr_info->tile[j2k->curtileno].tp[j2k->cur_tp_num].tp_numpacks =
+                                               cstr_info->packno - acc_pack_num;
+                                       acc_pack_num = cstr_info->packno;
+                               }
+                               /* << INDEX */
+
+                               j2k->cur_tp_num++;
+                       }                       
+               }
+               if(cstr_info) {
+                       cstr_info->tile[j2k->curtileno].end_pos = cio_tell(cio) + j2k->pos_correction - 1;
+               }
+
+
+               /*
+               if (tile->PPT) { // BAD PPT !!! 
+               FILE *PPT_file;
+               int i;
+               PPT_file=fopen("PPT","rb");
+               fprintf(stderr,"%c%c%c%c",255,97,tile->len_ppt/256,tile->len_ppt%256);
+               for (i=0;i<tile->len_ppt;i++) {
+               unsigned char elmt;
+               fread(&elmt, 1, 1, PPT_file);
+               fwrite(&elmt,1,1,f);
+               }
+               fclose(PPT_file);
+               unlink("PPT");
+               }
+               */
+
+       }
+
+       /* destroy the tile encoder */
+       tcd_free_encode(tcd);
+       tcd_destroy(tcd);
+
+       opj_free(j2k->cur_totnum_tp);
+
+       j2k_write_eoc(j2k);
+
+       if(cstr_info) {
+               cstr_info->codestream_size = cio_tell(cio) + j2k->pos_correction;
+               /* UniPG>> */
+               /* The following adjustment is done to adjust the codestream size */
+               /* if SOD is not at 0 in the buffer. Useful in case of JP2, where */
+               /* the first bunch of bytes is not in the codestream              */
+               cstr_info->codestream_size -= cstr_info->main_head_start;
+               /* <<UniPG */
+       }
+
+#ifdef USE_JPWL
+       /*
+       preparation of JPWL marker segments
+       */
+       if(cp->epc_on) {
+
+               /* encode according to JPWL */
+               jpwl_encode(j2k, cio, image);
+
+       }
+#endif /* USE_JPWL */
+
+       return OPJ_TRUE;
+}
+
+static void j2k_add_mhmarker(opj_codestream_info_t *cstr_info, unsigned short int type, int pos, int len) {
+
+       if (!cstr_info)
+               return;
+
+       /* expand the list? */
+       if ((cstr_info->marknum + 1) > cstr_info->maxmarknum) {
+               cstr_info->maxmarknum = 100 + (int) ((float) cstr_info->maxmarknum * 1.0F);
+               cstr_info->marker = (opj_marker_info_t*)opj_realloc(cstr_info->marker, cstr_info->maxmarknum);
+       }
+
+       /* add the marker */
+       cstr_info->marker[cstr_info->marknum].type = type;
+       cstr_info->marker[cstr_info->marknum].pos = pos;
+       cstr_info->marker[cstr_info->marknum].len = len;
+       cstr_info->marknum++;
+
+}
+
+static void j2k_add_mhmarker_v2(opj_codestream_index_t *cstr_index, OPJ_UINT32 type, OPJ_OFF_T pos, OPJ_UINT32 len) {
+
+       if (!cstr_index)
+               return;
+
+       /* expand the list? */
+       if ((cstr_index->marknum + 1) > cstr_index->maxmarknum) {
+               cstr_index->maxmarknum = 100 + (int) ((float) cstr_index->maxmarknum * 1.0F);
+               cstr_index->marker = (opj_marker_info_t*)opj_realloc(cstr_index->marker, cstr_index->maxmarknum *sizeof(opj_marker_info_t));
+       }
+
+       /* add the marker */
+       cstr_index->marker[cstr_index->marknum].type = (OPJ_UINT16)type;
+       cstr_index->marker[cstr_index->marknum].pos = (OPJ_INT32)pos;
+       cstr_index->marker[cstr_index->marknum].len = (OPJ_INT32)len;
+       cstr_index->marknum++;
+
+}
+
+static void j2k_add_tlmarker( int tileno, opj_codestream_info_t *cstr_info, unsigned short int type, int pos, int len) {
+
+
+  opj_marker_info_t *marker;
+
+       if (!cstr_info)
+               return;
+
+       /* expand the list? */
+       if ((cstr_info->tile[tileno].marknum + 1) > cstr_info->tile[tileno].maxmarknum) {
+               cstr_info->tile[tileno].maxmarknum = 100 + (int) ((float) cstr_info->tile[tileno].maxmarknum * 1.0F);
+               cstr_info->tile[tileno].marker = (opj_marker_info_t*)opj_realloc(cstr_info->tile[tileno].marker, cstr_info->maxmarknum);
+       }
+
+       marker = &(cstr_info->tile[tileno].marker[cstr_info->tile[tileno].marknum]);
+
+       /* add the marker */
+       marker->type = type;
+       marker->pos = pos;
+       marker->len = len;
+       cstr_info->tile[tileno].marknum++;
+}
+
+static void j2k_add_tlmarker_v2(OPJ_UINT32 tileno, opj_codestream_index_t *cstr_index, OPJ_UINT32 type, OPJ_OFF_T pos, OPJ_UINT32 len)
+{
+
+       if (!cstr_index)
+               return;
+
+       if (!cstr_index->tile_index)
+
+       /* expand the list? */
+       if ((cstr_index->tile_index[tileno].marknum + 1) > cstr_index->tile_index[tileno].maxmarknum) {
+               cstr_index->tile_index[tileno].maxmarknum = 100 + (int) ((float) cstr_index->tile_index[tileno].maxmarknum * 1.0F);
+               cstr_index->tile_index[tileno].marker =
+                               (opj_marker_info_t*)opj_realloc(cstr_index->tile_index[tileno].marker,
+                                                                                               cstr_index->tile_index[tileno].maxmarknum *sizeof(opj_marker_info_t));
+       }
+
+       /* add the marker */
+       cstr_index->tile_index[tileno].marker[cstr_index->tile_index[tileno].marknum].type = (OPJ_UINT16)type;
+       cstr_index->tile_index[tileno].marker[cstr_index->tile_index[tileno].marknum].pos = (OPJ_INT32)pos;
+       cstr_index->tile_index[tileno].marker[cstr_index->tile_index[tileno].marknum].len = (OPJ_INT32)len;
+       cstr_index->tile_index[tileno].marknum++;
+
+       if (type == J2K_MS_SOT) {
+               OPJ_UINT32 l_current_tile_part = cstr_index->tile_index[tileno].current_tpsno;
+
+               if (cstr_index->tile_index[tileno].tp_index)
+                       cstr_index->tile_index[tileno].tp_index[l_current_tile_part].start_pos = pos;
+
+       }
+
+}
+
+
+
+
+/*
+ * -----------------------------------------------------------------------
+ * -----------------------------------------------------------------------
+ * -----------------------------------------------------------------------
+ */
+
+/**
+ * Ends the decompression procedures and possibiliy add data to be read after the
+ * codestream.
+ */
+opj_bool j2k_end_decompress(
+                                               opj_j2k_v2_t *p_j2k,
+                                               opj_stream_private_t *p_stream,
+                                               opj_event_mgr_t * p_manager)
+{
+       return OPJ_TRUE;
+}
+
+/**
+ * Reads a jpeg2000 codestream header structure.
+
+ *
+ * @param p_stream the stream to read data from.
+ * @param p_j2k the jpeg2000 codec.
+ * @param p_manager the user event manager.
+ *
+ * @return true if the box is valid.
+ */
+opj_bool j2k_read_header(      struct opj_stream_private *p_stream,
+                                                       opj_j2k_v2_t* p_j2k,
+                                                       opj_image_t** p_image,
+                                                       struct opj_event_mgr* p_manager )
+{
+       /* preconditions */
+       assert(p_j2k != 00);
+       assert(p_stream != 00);
+       assert(p_manager != 00);
+
+       /* create an empty image header */
+       p_j2k->m_private_image = opj_image_create0();
+       if (! p_j2k->m_private_image) {
+               return OPJ_FALSE;
+       }
+
+       /* customization of the validation */
+       j2k_setup_decoding_validation(p_j2k);
+
+       /* validation of the parameters codec */
+       if (! j2k_exec(p_j2k, p_j2k->m_validation_list, p_stream,p_manager)) {
+               opj_image_destroy(p_j2k->m_private_image);
+               p_j2k->m_private_image = NULL;
+               return OPJ_FALSE;
+       }
+
+       /* customization of the encoding */
+       j2k_setup_header_reading(p_j2k);
+
+       /* read header */
+       if (! j2k_exec (p_j2k,p_j2k->m_procedure_list,p_stream,p_manager)) {
+               opj_image_destroy(p_j2k->m_private_image);
+               p_j2k->m_private_image = NULL;
+               return OPJ_FALSE;
+       }
+
+       *p_image = opj_image_create0();
+       if (! (*p_image)) {
+               return OPJ_FALSE;
+       }
+
+       /* Copy codestream image information to the output image */
+       opj_copy_image_header(p_j2k->m_private_image, *p_image);
+
+
+       return OPJ_TRUE;
+}
+
+/**
+ * Sets up the procedures to do on reading header. Developpers wanting to extend the library can add their own reading procedures.
+ */
+void j2k_setup_header_reading (opj_j2k_v2_t *p_j2k)
+{
+       // preconditions
+       assert(p_j2k != 00);
+
+       opj_procedure_list_add_procedure(p_j2k->m_procedure_list,(void*)j2k_read_header_procedure);
+
+       /* DEVELOPER CORNER, add your custom procedures */
+       opj_procedure_list_add_procedure(p_j2k->m_procedure_list,(void*)j2k_copy_default_tcp_and_create_tcd);
+
+}
+
+/**
+ * Sets up the validation ,i.e. adds the procedures to lauch to make sure the codec parameters
+ * are valid. Developpers wanting to extend the library can add their own validation procedures.
+ */
+void j2k_setup_decoding_validation (opj_j2k_v2_t *p_j2k)
+{
+       // preconditions
+       assert(p_j2k != 00);
+
+       opj_procedure_list_add_procedure(p_j2k->m_validation_list, (void*)j2k_build_decoder);
+       opj_procedure_list_add_procedure(p_j2k->m_validation_list, (void*)j2k_decoding_validation);
+       /* DEVELOPER CORNER, add your custom validation procedure */
+
+}
+
+/**
+ * Builds the cp decoder parameters to use to decode tile.
+ */
+opj_bool j2k_build_decoder (
+                                               opj_j2k_v2_t * p_j2k,
+                                               opj_stream_private_t *p_stream,
+                                               opj_event_mgr_t * p_manager
+                                               )
+{
+       // add here initialization of cp
+       // copy paste of setup_decoder
+       return OPJ_TRUE;
+}
+
+/**
+ * The default decoding validation procedure without any extension.
+ *
+ * @param      p_j2k                   the jpeg2000 codec to validate.
+ * @param      p_stream                                the input stream to validate.
+ * @param      p_manager               the user event manager.
+ *
+ * @return true if the parameters are correct.
+ */
+opj_bool j2k_decoding_validation (
+                                                               opj_j2k_v2_t *p_j2k,
+                                                               opj_stream_private_t *p_stream,
+                                                               opj_event_mgr_t * p_manager
+                                                         )
+{
+       opj_bool l_is_valid = OPJ_TRUE;
+
+       // preconditions
+       assert(p_j2k != 00);
+       assert(p_stream != 00);
+       assert(p_manager != 00);
+
+
+       /* STATE checking */
+       /* make sure the state is at 0 */
+#ifdef TODO_MSD
+       l_is_valid &= (p_j2k->m_specific_param.m_decoder.m_state == J2K_DEC_STATE_NONE);
+#endif
+       l_is_valid &= (p_j2k->m_specific_param.m_decoder.m_state == 0x0000);
+
+       /* POINTER validation */
+       /* make sure a p_j2k codec is present */
+       /* make sure a procedure list is present */
+       l_is_valid &= (p_j2k->m_procedure_list != 00);
+       /* make sure a validation list is present */
+       l_is_valid &= (p_j2k->m_validation_list != 00);
+
+       /* PARAMETER VALIDATION */
+       return l_is_valid;
+}
+
+opj_bool j2k_read_header_procedure(    opj_j2k_v2_t *p_j2k,
+                                                                       struct opj_stream_private *p_stream,
+                                                                       struct opj_event_mgr * p_manager)
+{
+       OPJ_UINT32 l_current_marker;
+       OPJ_UINT32 l_marker_size;
+       const opj_dec_memory_marker_handler_t * l_marker_handler = 00;
+
+       /* preconditions */
+       assert(p_stream != 00);
+       assert(p_j2k != 00);
+       assert(p_manager != 00);
+
+       /*  We enter in the main header */
+       p_j2k->m_specific_param.m_decoder.m_state = J2K_STATE_MHSOC;
+
+       /* Try to read the SOC marker, the codestream must begin with SOC marker */
+       if (! j2k_read_soc_v2(p_j2k,p_stream,p_manager)) {
+               opj_event_msg_v2(p_manager, EVT_ERROR, "Expected a SOC marker \n");
+               return OPJ_FALSE;
+       }
+
+       /* Try to read 2 bytes (the next marker ID) from stream and copy them into the buffer */
+       if (opj_stream_read_data(p_stream,p_j2k->m_specific_param.m_decoder.m_header_data,2,p_manager) != 2) {
+               opj_event_msg_v2(p_manager, EVT_ERROR, "Stream too short\n");
+               return OPJ_FALSE;
+       }
+
+       /* Read 2 bytes as the new marker ID */
+       opj_read_bytes(p_j2k->m_specific_param.m_decoder.m_header_data,&l_current_marker,2);
+
+       /* Try to read until the SOT is detected */
+       while (l_current_marker != J2K_MS_SOT) {
+
+               /* Check if the current marker ID is valid */
+               if (l_current_marker < 0xff00) {
+                       opj_event_msg_v2(p_manager, EVT_ERROR, "We expected read a marker ID (0xff--) instead of %.8x\n", l_current_marker);
+                       return OPJ_FALSE;
+               }
+
+               /* Get the marker handler from the marker ID */
+               l_marker_handler = j2k_get_marker_handler(l_current_marker);
+
+               /* Manage case where marker is unknown */
+               if (l_marker_handler->id == J2K_MS_UNK) {
+                       if (! j2k_read_unk_v2(p_j2k, p_stream, &l_current_marker, p_manager)){
+                               opj_event_msg_v2(p_manager, EVT_ERROR, "Unknow marker have been detected and generated error.\n");
+                               return OPJ_FALSE;
+                       }
+
+                       if (l_current_marker == J2K_MS_SOT)
+                               break; /* SOT marker is detected main header is completely read */
+                       else    /* Get the marker handler from the marker ID */
+                               l_marker_handler = j2k_get_marker_handler(l_current_marker);
+               }
+
+               /* Check if the marker is known and if it is the right place to find it */
+               if (! (p_j2k->m_specific_param.m_decoder.m_state & l_marker_handler->states) ) {
+                       opj_event_msg_v2(p_manager, EVT_ERROR, "Marker is not compliant with its position\n");
+                       return OPJ_FALSE;
+               }
+
+               /* Try to read 2 bytes (the marker size) from stream and copy them into the buffer */
+               if (opj_stream_read_data(p_stream,p_j2k->m_specific_param.m_decoder.m_header_data,2,p_manager) != 2) {
+                       opj_event_msg_v2(p_manager, EVT_ERROR, "Stream too short\n");
+                       return OPJ_FALSE;
+               }
+
+               /* read 2 bytes as the marker size */
+               opj_read_bytes(p_j2k->m_specific_param.m_decoder.m_header_data,&l_marker_size,2);
+               l_marker_size -= 2; // Subtract the size of the marker ID already read
+
+               /* Check if the marker size is compatible with the header data size */
+               if (l_marker_size > p_j2k->m_specific_param.m_decoder.m_header_data_size) {
+                       p_j2k->m_specific_param.m_decoder.m_header_data = (OPJ_BYTE*)
+                                       opj_realloc(p_j2k->m_specific_param.m_decoder.m_header_data,l_marker_size);
+                       if (p_j2k->m_specific_param.m_decoder.m_header_data == 00) {
+                               return OPJ_FALSE;
+                       }
+                       p_j2k->m_specific_param.m_decoder.m_header_data_size = l_marker_size;
+               }
+
+               /* Try to read the rest of the marker segment from stream and copy them into the buffer */
+               if (opj_stream_read_data(p_stream,p_j2k->m_specific_param.m_decoder.m_header_data,l_marker_size,p_manager) != l_marker_size) {
+                       opj_event_msg_v2(p_manager, EVT_ERROR, "Stream too short\n");
+                       return OPJ_FALSE;
+               }
+
+               /* Read the marker segment with the correct marker handler */
+               if (! (*(l_marker_handler->handler))(p_j2k,p_j2k->m_specific_param.m_decoder.m_header_data,l_marker_size,p_manager)) {
+                       opj_event_msg_v2(p_manager, EVT_ERROR, "Marker handler function failed to read the marker segment\n");
+                       return OPJ_FALSE;
+               }
+
+               /* Add the marker to the codestream index*/
+               j2k_add_mhmarker_v2(p_j2k->cstr_index,
+                                                       l_marker_handler->id,
+                                                       (OPJ_UINT32) opj_stream_tell(p_stream) - l_marker_size - 4,
+                                                       l_marker_size + 4 );
+
+               /* Try to read 2 bytes (the next marker ID) from stream and copy them into the buffer */
+               if (opj_stream_read_data(p_stream,p_j2k->m_specific_param.m_decoder.m_header_data,2,p_manager) != 2) {
+                       opj_event_msg_v2(p_manager, EVT_ERROR, "Stream too short\n");
+                       return OPJ_FALSE;
+               }
+
+               /* read 2 bytes as the new marker ID */
+               opj_read_bytes(p_j2k->m_specific_param.m_decoder.m_header_data,&l_current_marker,2);
+       }
+
+       opj_event_msg_v2(p_manager, EVT_INFO, "Main header has been correctly decode.\n");
+
+       /* Position of the last element if the main header */
+       p_j2k->cstr_index->main_head_end = (OPJ_UINT32) opj_stream_tell(p_stream) - 2;
+
+       /* Next step: read a tile-part header */
+       p_j2k->m_specific_param.m_decoder.m_state = J2K_STATE_TPHSOT;
+
+       return OPJ_TRUE;
+}
+
+/**
+ * Excutes the given procedures on the given codec.
+ *
+ * @param      p_procedure_list        the list of procedures to execute
+ * @param      p_j2k                                   the jpeg2000 codec to execute the procedures on.
+ * @param      p_stream                                        the stream to execute the procedures on.
+ * @param      p_manager                       the user manager.
+ *
+ * @return     true                            if all the procedures were successfully executed.
+ */
+opj_bool j2k_exec (    opj_j2k_v2_t * p_j2k,
+                                       opj_procedure_list_t * p_procedure_list,
+                                       opj_stream_private_t *p_stream,
+                                       opj_event_mgr_t * p_manager )
+{
+       opj_bool (** l_procedure) (opj_j2k_v2_t * ,opj_stream_private_t *,opj_event_mgr_t *) = 00;
+       opj_bool l_result = OPJ_TRUE;
+       OPJ_UINT32 l_nb_proc, i;
+
+       // preconditions
+       assert(p_procedure_list != 00);
+       assert(p_j2k != 00);
+       assert(p_stream != 00);
+       assert(p_manager != 00);
+
+
+       l_nb_proc = opj_procedure_list_get_nb_procedures(p_procedure_list);
+       l_procedure = (opj_bool (**) (opj_j2k_v2_t * ,opj_stream_private_t *,opj_event_mgr_t *)) opj_procedure_list_get_first_procedure(p_procedure_list);
+
+       for     (i=0;i<l_nb_proc;++i) {
+               l_result = l_result && ((*l_procedure) (p_j2k,p_stream,p_manager));
+               ++l_procedure;
+       }
+
+       // and clear the procedure list at the end.
+       opj_procedure_list_clear(p_procedure_list);
+       return l_result;
+}
+
+/* FIXME DOC*/
+opj_bool j2k_copy_default_tcp_and_create_tcd
+                                               (
+                                               opj_j2k_v2_t * p_j2k,
+                                               opj_stream_private_t *p_stream,
+                                               opj_event_mgr_t * p_manager
+                                               )
+{
+       opj_tcp_v2_t * l_tcp = 00;
+       opj_tcp_v2_t * l_default_tcp = 00;
+       OPJ_UINT32 l_nb_tiles;
+       OPJ_UINT32 i,j;
+       opj_tccp_t *l_current_tccp = 00;
+       OPJ_UINT32 l_tccp_size;
+       OPJ_UINT32 l_mct_size;
+       opj_image_t * l_image;
+       OPJ_UINT32 l_mcc_records_size,l_mct_records_size;
+       opj_mct_data_t * l_src_mct_rec, *l_dest_mct_rec;
+       opj_simple_mcc_decorrelation_data_t * l_src_mcc_rec, *l_dest_mcc_rec;
+       OPJ_UINT32 l_offset;
+
+       /* preconditions */
+       assert(p_j2k != 00);
+       assert(p_stream != 00);
+       assert(p_manager != 00);
+
+       l_image = p_j2k->m_private_image;
+       l_nb_tiles = p_j2k->m_cp.th * p_j2k->m_cp.tw;
+       l_tcp = p_j2k->m_cp.tcps;
+       l_tccp_size = l_image->numcomps * sizeof(opj_tccp_t);
+       l_default_tcp = p_j2k->m_specific_param.m_decoder.m_default_tcp;
+       l_mct_size = l_image->numcomps * l_image->numcomps * sizeof(OPJ_FLOAT32);
+
+       /* For each tile */
+       for (i=0; i<l_nb_tiles; ++i) {
+               /* keep the tile-compo coding parameters pointer of the current tile coding parameters*/
+               l_current_tccp = l_tcp->tccps;
+               /*Copy default coding parameters into the current tile coding parameters*/
+               memcpy(l_tcp, l_default_tcp, sizeof(opj_tcp_v2_t));
+               /* Initialize some values of the current tile coding parameters*/
+               l_tcp->ppt = 0;
+               l_tcp->ppt_data = 00;
+               /* Reconnect the tile-compo coding parameters pointer to the current tile coding parameters*/
+               l_tcp->tccps = l_current_tccp;
+
+               /* Get the mct_decoding_matrix of the dflt_tile_cp and copy them into the current tile cp*/
+               if (l_default_tcp->m_mct_decoding_matrix) {
+                       l_tcp->m_mct_decoding_matrix = (OPJ_FLOAT32*)opj_malloc(l_mct_size);
+                       if (! l_tcp->m_mct_decoding_matrix ) {
+                               return OPJ_FALSE;
+                       }
+                       memcpy(l_tcp->m_mct_decoding_matrix,l_default_tcp->m_mct_decoding_matrix,l_mct_size);
+               }
+
+               /* Get the mct_record of the dflt_tile_cp and copy them into the current tile cp*/
+               l_mct_records_size = l_default_tcp->m_nb_max_mct_records * sizeof(opj_mct_data_t);
+               l_tcp->m_mct_records = (opj_mct_data_t*)opj_malloc(l_mct_records_size);
+               if (! l_tcp->m_mct_records) {
+                       return OPJ_FALSE;
+               }
+               memcpy(l_tcp->m_mct_records, l_default_tcp->m_mct_records,l_mct_records_size);
+
+               /* Copy the mct record data from dflt_tile_cp to the current tile*/
+               l_src_mct_rec = l_default_tcp->m_mct_records;
+               l_dest_mct_rec = l_tcp->m_mct_records;
+
+               for (j=0;j<l_default_tcp->m_nb_mct_records;++j) {
+
+                       if (l_src_mct_rec->m_data) {
+
+                               l_dest_mct_rec->m_data = (OPJ_BYTE*) opj_malloc(l_src_mct_rec->m_data_size);
+                               if(! l_dest_mct_rec->m_data) {
+                                       return OPJ_FALSE;
+                               }
+                               memcpy(l_dest_mct_rec->m_data,l_src_mct_rec->m_data,l_src_mct_rec->m_data_size);
+                       }
+
+                       ++l_src_mct_rec;
+                       ++l_dest_mct_rec;
+               }
+
+               /* Get the mcc_record of the dflt_tile_cp and copy them into the current tile cp*/
+               l_mcc_records_size = l_default_tcp->m_nb_max_mcc_records * sizeof(opj_simple_mcc_decorrelation_data_t);
+               l_tcp->m_mcc_records = (opj_simple_mcc_decorrelation_data_t*) opj_malloc(l_mcc_records_size);
+               if (! l_tcp->m_mcc_records) {
+                       return OPJ_FALSE;
+               }
+               memcpy(l_tcp->m_mcc_records,l_default_tcp->m_mcc_records,l_mcc_records_size);
+
+               /* Copy the mcc record data from dflt_tile_cp to the current tile*/
+               l_src_mcc_rec = l_default_tcp->m_mcc_records;
+               l_dest_mcc_rec = l_tcp->m_mcc_records;
+
+               for (j=0;j<l_default_tcp->m_nb_max_mcc_records;++j) {
+
+                       if (l_src_mcc_rec->m_decorrelation_array) {
+                               l_offset = l_src_mcc_rec->m_decorrelation_array - l_default_tcp->m_mct_records;
+                               l_dest_mcc_rec->m_decorrelation_array = l_tcp->m_mct_records + l_offset;
+                       }
+
+                       if (l_src_mcc_rec->m_offset_array) {
+                               l_offset = l_src_mcc_rec->m_offset_array - l_default_tcp->m_mct_records;
+                               l_dest_mcc_rec->m_offset_array = l_tcp->m_mct_records + l_offset;
+                       }
+
+                       ++l_src_mcc_rec;
+                       ++l_dest_mcc_rec;
+               }
+
+               /* Copy all the dflt_tile_compo_cp to the current tile cp */
+               memcpy(l_current_tccp,l_default_tcp->tccps,l_tccp_size);
+
+               /* Move to next tile cp*/
+               ++l_tcp;
+       }
+
+       /* Create the current tile decoder*/
+       p_j2k->m_tcd = (opj_tcd_v2_t*)tcd_create_v2(OPJ_TRUE); // FIXME why a cast ?
+       if (! p_j2k->m_tcd ) {
+               return OPJ_FALSE;
+       }
+
+       if ( !tcd_init_v2(p_j2k->m_tcd, l_image, &(p_j2k->m_cp)) ) {
+               tcd_destroy_v2(p_j2k->m_tcd);
+               p_j2k->m_tcd = 00;
+               opj_event_msg_v2(p_manager, EVT_ERROR, "Cannot decode tile, memory error\n");
+               return OPJ_FALSE;
+       }
+
+       return OPJ_TRUE;
+}
+
+/**
+ * Reads the lookup table containing all the marker, status and action, and returns the handler associated
+ * with the marker value.
+ * @param      p_id            Marker value to look up
+ *
+ * @return     the handler associated with the id.
+*/
+const opj_dec_memory_marker_handler_t * j2k_get_marker_handler (OPJ_UINT32 p_id)
+{
+       const opj_dec_memory_marker_handler_t *e;
+       for (e = j2k_memory_marker_handler_tab; e->id != 0; ++e) {
+               if (e->id == p_id) {
+                       break; // we find a handler corresponding to the marker ID
+               }
+       }
+       return e;
+}
+
+
+/**
+ * Destroys a jpeg2000 codec.
+ *
+ * @param      p_j2k   the jpeg20000 structure to destroy.
+ */
+void j2k_destroy (opj_j2k_v2_t *p_j2k)
+{
+       if (p_j2k == 00) {
+               return;
+       }
+
+       if (p_j2k->m_is_decoder) {
+
+               if (p_j2k->m_specific_param.m_decoder.m_default_tcp != 00) {
+                       j2k_tcp_destroy(p_j2k->m_specific_param.m_decoder.m_default_tcp);
+                       opj_free(p_j2k->m_specific_param.m_decoder.m_default_tcp);
+                       p_j2k->m_specific_param.m_decoder.m_default_tcp = 00;
+               }
+
+               if (p_j2k->m_specific_param.m_decoder.m_header_data != 00) {
+                       opj_free(p_j2k->m_specific_param.m_decoder.m_header_data);
+                       p_j2k->m_specific_param.m_decoder.m_header_data = 00;
+                       p_j2k->m_specific_param.m_decoder.m_header_data_size = 0;
+               }
+       }
+       else {
+
+               if (p_j2k->m_specific_param.m_encoder.m_encoded_tile_data) {
+                       opj_free(p_j2k->m_specific_param.m_encoder.m_encoded_tile_data);
+                       p_j2k->m_specific_param.m_encoder.m_encoded_tile_data = 00;
+               }
+
+               if (p_j2k->m_specific_param.m_encoder.m_tlm_sot_offsets_buffer) {
+                       opj_free(p_j2k->m_specific_param.m_encoder.m_tlm_sot_offsets_buffer);
+                       p_j2k->m_specific_param.m_encoder.m_tlm_sot_offsets_buffer = 00;
+                       p_j2k->m_specific_param.m_encoder.m_tlm_sot_offsets_current = 00;
+               }
+
+               if (p_j2k->m_specific_param.m_encoder.m_header_tile_data) {
+                       opj_free(p_j2k->m_specific_param.m_encoder.m_header_tile_data);
+                       p_j2k->m_specific_param.m_encoder.m_header_tile_data = 00;
+                       p_j2k->m_specific_param.m_encoder.m_header_tile_data_size = 0;
+               }
+       }
+
+       tcd_destroy_v2(p_j2k->m_tcd);
+
+       j2k_cp_destroy(&(p_j2k->m_cp));
+       memset(&(p_j2k->m_cp),0,sizeof(opj_cp_v2_t));
+
+       opj_procedure_list_destroy(p_j2k->m_procedure_list);
+       p_j2k->m_procedure_list = 00;
+
+       opj_procedure_list_destroy(p_j2k->m_validation_list);
+       p_j2k->m_procedure_list = 00;
+
+       j2k_destroy_cstr_index(p_j2k->cstr_index);
+       p_j2k->cstr_index = NULL;
+
+       opj_image_destroy(p_j2k->m_private_image);
+       p_j2k->m_private_image = NULL;
+
+       opj_image_destroy(p_j2k->m_output_image);
+       p_j2k->m_output_image = NULL;
+
+       opj_free(p_j2k);
+}
+
+void j2k_destroy_cstr_index (opj_codestream_index_t *p_cstr_ind)
+{
+       if (p_cstr_ind) {
+
+               if (p_cstr_ind->marker) {
+                       opj_free(p_cstr_ind->marker);
+                       p_cstr_ind->marker = NULL;
+               }
+
+               if (p_cstr_ind->tile_index) {
+                       OPJ_UINT32 it_tile = 0;
+
+                       for (it_tile=0; it_tile < p_cstr_ind->nb_of_tiles; it_tile++) {
+
+                               if(p_cstr_ind->tile_index[it_tile].packet_index) {
+                                       opj_free(p_cstr_ind->tile_index[it_tile].packet_index);
+                                       p_cstr_ind->tile_index[it_tile].packet_index = NULL;
+                               }
+
+                               if(p_cstr_ind->tile_index[it_tile].tp_index){
+                                       opj_free(p_cstr_ind->tile_index[it_tile].tp_index);
+                                       p_cstr_ind->tile_index[it_tile].tp_index = NULL;
+                               }
+
+                               if(p_cstr_ind->tile_index[it_tile].marker){
+                                       opj_free(p_cstr_ind->tile_index[it_tile].marker);
+                                       p_cstr_ind->tile_index[it_tile].marker = NULL;
+
+                               }
+                       }
+
+                       opj_free( p_cstr_ind->tile_index);
+                       p_cstr_ind->tile_index = NULL;
+               }
+
+               opj_free(p_cstr_ind);
+       }
+}
+
+
+
+/**
+ * Destroys a tile coding parameter structure.
+ *
+ * @param      p_tcp           the tile coding parameter to destroy.
+ */
+void j2k_tcp_destroy (opj_tcp_v2_t *p_tcp)
+{
+       if (p_tcp == 00) {
+               return;
+       }
+
+       if (p_tcp->ppt_buffer != 00) {
+               opj_free(p_tcp->ppt_buffer);
+               p_tcp->ppt_buffer = 00;
+       }
+
+       if (p_tcp->tccps != 00) {
+               opj_free(p_tcp->tccps);
+               p_tcp->tccps = 00;
+       }
+
+       if (p_tcp->m_mct_coding_matrix != 00) {
+               opj_free(p_tcp->m_mct_coding_matrix);
+               p_tcp->m_mct_coding_matrix = 00;
+       }
+
+       if (p_tcp->m_mct_decoding_matrix != 00) {
+               opj_free(p_tcp->m_mct_decoding_matrix);
+               p_tcp->m_mct_decoding_matrix = 00;
+       }
+
+       if (p_tcp->m_mcc_records) {
+               opj_free(p_tcp->m_mcc_records);
+               p_tcp->m_mcc_records = 00;
+               p_tcp->m_nb_max_mcc_records = 0;
+               p_tcp->m_nb_mcc_records = 0;
+       }
+
+       if (p_tcp->m_mct_records) {
+               opj_mct_data_t * l_mct_data = p_tcp->m_mct_records;
+               OPJ_UINT32 i;
+
+               for (i=0;i<p_tcp->m_nb_mct_records;++i) {
+                       if (l_mct_data->m_data) {
+                               opj_free(l_mct_data->m_data);
+                               l_mct_data->m_data = 00;
+                       }
+
+                       ++l_mct_data;
+               }
+
+               opj_free(p_tcp->m_mct_records);
+               p_tcp->m_mct_records = 00;
+       }
+
+       if (p_tcp->mct_norms != 00) {
+               opj_free(p_tcp->mct_norms);
+               p_tcp->mct_norms = 00;
+       }
+
+       j2k_tcp_data_destroy(p_tcp);
+
+}
+
+/**
+ * Destroys the data inside a tile coding parameter structure.
+ *
+ * @param      p_tcp           the tile coding parameter which contain data to destroy.
+ */
+void j2k_tcp_data_destroy (opj_tcp_v2_t *p_tcp)
+{
+       if (p_tcp->m_data) {
+               opj_free(p_tcp->m_data);
+               p_tcp->m_data = NULL;
+               p_tcp->m_data_size = 0;
+       }
+}
+
+/**
+ * Destroys a coding parameter structure.
+ *
+ * @param      p_cp            the coding parameter to destroy.
+ */
+void j2k_cp_destroy (opj_cp_v2_t *p_cp)
+{
+       OPJ_UINT32 l_nb_tiles;
+       opj_tcp_v2_t * l_current_tile = 00;
+       OPJ_UINT32 i;
+
+       if
+               (p_cp == 00)
+       {
+               return;
+       }
+       if
+               (p_cp->tcps != 00)
+       {
+               l_current_tile = p_cp->tcps;
+               l_nb_tiles = p_cp->th * p_cp->tw;
+
+               for
+                       (i = 0; i < l_nb_tiles; ++i)
+               {
+                       j2k_tcp_destroy(l_current_tile);
+                       ++l_current_tile;
+               }
+               opj_free(p_cp->tcps);
+               p_cp->tcps = 00;
+       }
+       if
+               (p_cp->ppm_buffer != 00)
+       {
+               opj_free(p_cp->ppm_buffer);
+               p_cp->ppm_buffer = 00;
+       }
+       if
+               (p_cp->comment != 00)
+       {
+               opj_free(p_cp->comment);
+               p_cp->comment = 00;
+       }
+       if
+               (! p_cp->m_is_decoder)
+       {
+               if
+                       (p_cp->m_specific_param.m_enc.m_matrice)
+               {
+                       opj_free(p_cp->m_specific_param.m_enc.m_matrice);
+                       p_cp->m_specific_param.m_enc.m_matrice = 00;
+               }
+       }
+}
+
+
+
+/**
+ * Reads a tile header.
+ * @param      p_j2k           the jpeg2000 codec.
+ * @param      p_stream                        the stream to write data to.
+ * @param      p_manager       the user event manager.
+ */
+opj_bool j2k_read_tile_header( opj_j2k_v2_t * p_j2k,
+                                                               OPJ_UINT32 * p_tile_index,
+                                                               OPJ_UINT32 * p_data_size,
+                                                               OPJ_INT32 * p_tile_x0, OPJ_INT32 * p_tile_y0,
+                                                               OPJ_INT32 * p_tile_x1, OPJ_INT32 * p_tile_y1,
+                                                               OPJ_UINT32 * p_nb_comps,
+                                                               opj_bool * p_go_on,
+                                                               opj_stream_private_t *p_stream,
+                                                               opj_event_mgr_t * p_manager )
+{
+       OPJ_UINT32 l_current_marker = J2K_MS_SOT;
+       OPJ_UINT32 l_marker_size;
+       const opj_dec_memory_marker_handler_t * l_marker_handler = 00;
+       opj_tcp_v2_t * l_tcp = NULL;
+       OPJ_UINT32 l_nb_tiles;
+
+       /* preconditions */
+       assert(p_stream != 00);
+       assert(p_j2k != 00);
+       assert(p_manager != 00);
+
+       /* Reach the End Of Codestream ?*/
+       if (p_j2k->m_specific_param.m_decoder.m_state == J2K_STATE_EOC){
+               l_current_marker = J2K_MS_EOC;
+       }
+       /* We need to encounter a SOT marker (a new tile-part header) */
+       else if (p_j2k->m_specific_param.m_decoder.m_state != J2K_STATE_TPHSOT){
+               return OPJ_FALSE;
+       }
+
+       /* Read into the codestream until reach the EOC or ! can_decode ??? FIXME */
+       while ( (!p_j2k->m_specific_param.m_decoder.m_can_decode) && (l_current_marker != J2K_MS_EOC) ) {
+
+               /* Try to read until the Start Of Data is detected */
+               while (l_current_marker != J2K_MS_SOD) {
+
+                       /* Try to read 2 bytes (the marker size) from stream and copy them into the buffer */
+                       if (opj_stream_read_data(p_stream,p_j2k->m_specific_param.m_decoder.m_header_data,2,p_manager) != 2) {
+                               opj_event_msg_v2(p_manager, EVT_ERROR, "Stream too short\n");
+                               return OPJ_FALSE;
+                       }
+
+                       /* Read 2 bytes from the buffer as the marker size */
+                       opj_read_bytes(p_j2k->m_specific_param.m_decoder.m_header_data,&l_marker_size,2);
+
+                       /* Why this condition? FIXME */
+                       if (p_j2k->m_specific_param.m_decoder.m_state & J2K_STATE_TPH){
+                               p_j2k->m_specific_param.m_decoder.m_sot_length -= (l_marker_size + 2);
+                       }
+                       l_marker_size -= 2; /* Subtract the size of the marker ID already read */
+
+                       /* Get the marker handler from the marker ID */
+                       l_marker_handler = j2k_get_marker_handler(l_current_marker);
+
+                       /* Check if the marker is known and if it is the right place to find it */
+                       if (! (p_j2k->m_specific_param.m_decoder.m_state & l_marker_handler->states) ) {
+                               opj_event_msg_v2(p_manager, EVT_ERROR, "Marker is not compliant with its position\n");
+                               return OPJ_FALSE;
+                       }
+/* FIXME manage case of unknown marker as in the main header ? */
+
+                       /* Check if the marker size is compatible with the header data size */
+                       if (l_marker_size > p_j2k->m_specific_param.m_decoder.m_header_data_size) {
+                               p_j2k->m_specific_param.m_decoder.m_header_data = (OPJ_BYTE*)
+                                       opj_realloc(p_j2k->m_specific_param.m_decoder.m_header_data,l_marker_size);
+                               if (p_j2k->m_specific_param.m_decoder.m_header_data == 00) {
+                                       return OPJ_FALSE;
                                }
-                       }else{
-                               if (parameters->csty & J2K_CCP_CSTY_PRT) {
-                                       int p = 0;
-                                       for (j = tccp->numresolutions - 1; j >= 0; j--) {
-                                               if (p < parameters->res_spec) {
-                                                       
-                                                       if (parameters->prcw_init[p] < 1) {
-                                                               tccp->prcw[j] = 1;
-                                                       } else {
-                                                               tccp->prcw[j] = int_floorlog2(parameters->prcw_init[p]);
-                                                       }
-                                                       
-                                                       if (parameters->prch_init[p] < 1) {
-                                                               tccp->prch[j] = 1;
-                                                       }else {
-                                                               tccp->prch[j] = int_floorlog2(parameters->prch_init[p]);
-                                                       }
+                               p_j2k->m_specific_param.m_decoder.m_header_data_size = l_marker_size;
+                       }
 
-                                               } else {
-                                                       int res_spec = parameters->res_spec;
-                                                       int size_prcw = parameters->prcw_init[res_spec - 1] >> (p - (res_spec - 1));
-                                                       int size_prch = parameters->prch_init[res_spec - 1] >> (p - (res_spec - 1));
-                                                       
-                                                       if (size_prcw < 1) {
-                                                               tccp->prcw[j] = 1;
-                                                       } else {
-                                                               tccp->prcw[j] = int_floorlog2(size_prcw);
-                                                       }
-                                                       
-                                                       if (size_prch < 1) {
-                                                               tccp->prch[j] = 1;
-                                                       } else {
-                                                               tccp->prch[j] = int_floorlog2(size_prch);
-                                                       }
-                                               }
-                                               p++;
-                                               /*printf("\nsize precinct for level %d : %d,%d\n", j,tccp->prcw[j], tccp->prch[j]); */
-                                       }       //end for
-                               } else {
-                                       for (j = 0; j < tccp->numresolutions; j++) {
-                                               tccp->prcw[j] = 15;
-                                               tccp->prch[j] = 15;
-                                       }
+                       /* Try to read the rest of the marker segment from stream and copy them into the buffer */
+                       if (opj_stream_read_data(p_stream,p_j2k->m_specific_param.m_decoder.m_header_data,l_marker_size,p_manager) != l_marker_size) {
+                               opj_event_msg_v2(p_manager, EVT_ERROR, "Stream too short\n");
+                               return OPJ_FALSE;
+                       }
+
+                       /* Read the marker segment with the correct marker handler */
+                       if (! (*(l_marker_handler->handler))(p_j2k,p_j2k->m_specific_param.m_decoder.m_header_data,l_marker_size,p_manager)) {
+                               opj_event_msg_v2(p_manager, EVT_ERROR, "Fail to read the current marker segment (%#x)\n", l_current_marker);
+                               return OPJ_FALSE;
+                       }
+
+                       /* Add the marker to the codestream index*/
+                       j2k_add_tlmarker_v2(p_j2k->m_current_tile_number,
+                                                               p_j2k->cstr_index,
+                                                               l_marker_handler->id,
+                                                               (OPJ_UINT32) opj_stream_tell(p_stream) - l_marker_size - 4,
+                                                               l_marker_size + 4 );
+
+                       /* Keep the position of the last SOT marker read */
+                       if ( l_marker_handler->id == J2K_MS_SOT ) {
+                               OPJ_UINT32 sot_pos = (OPJ_UINT32) opj_stream_tell(p_stream) - l_marker_size - 4 ;
+                               if (sot_pos > p_j2k->m_specific_param.m_decoder.m_last_sot_read_pos)
+                               {
+                                       p_j2k->m_specific_param.m_decoder.m_last_sot_read_pos = sot_pos;
                                }
                        }
 
-                       dwt_calc_explicit_stepsizes(tccp, image->comps[i].prec);
+
+                       if (p_j2k->m_specific_param.m_decoder.m_skip_data) {
+                               /* Skip the rest of the tile part header*/
+                               if (opj_stream_skip(p_stream,p_j2k->m_specific_param.m_decoder.m_sot_length,p_manager) != p_j2k->m_specific_param.m_decoder.m_sot_length) {
+                                       opj_event_msg_v2(p_manager, EVT_ERROR, "Stream too short\n");
+                                       return OPJ_FALSE;
+                               }
+                               l_current_marker = J2K_MS_SOD; /* Normally we reached a SOD */
+                       }
+                       else {
+                               /* Try to read 2 bytes (the next marker ID) from stream and copy them into the buffer*/
+                               if (opj_stream_read_data(p_stream,p_j2k->m_specific_param.m_decoder.m_header_data,2,p_manager) != 2) {
+                                       opj_event_msg_v2(p_manager, EVT_ERROR, "Stream too short\n");
+                                       return OPJ_FALSE;
+                               }
+                               /* Read 2 bytes from the buffer as the new marker ID */
+                               opj_read_bytes(p_j2k->m_specific_param.m_decoder.m_header_data,&l_current_marker,2);
+                       }
                }
-       }
-}
 
-opj_bool j2k_encode(opj_j2k_t *j2k, opj_cio_t *cio, opj_image_t *image, opj_codestream_info_t *cstr_info) {
-       int tileno, compno;
-       opj_cp_t *cp = NULL;
+               /* If we didn't skip data before, we need to read the SOD marker*/
+               if (! p_j2k->m_specific_param.m_decoder.m_skip_data) {
+                       /* Try to read the SOD marker and skip data ? FIXME */
+                       if (! j2k_read_sod_v2(p_j2k, p_stream, p_manager)) {
+                               return OPJ_FALSE;
+                       }
 
-       opj_tcd_t *tcd = NULL;  /* TCD component */
 
-       j2k->cio = cio; 
-       j2k->image = image;
 
-       cp = j2k->cp;
+                       if (! p_j2k->m_specific_param.m_decoder.m_can_decode){
+                               /* Try to read 2 bytes (the next marker ID) from stream and copy them into the buffer */
+                               if (opj_stream_read_data(p_stream,p_j2k->m_specific_param.m_decoder.m_header_data,2,p_manager) != 2) {
+                                       opj_event_msg_v2(p_manager, EVT_ERROR, "Stream too short\n");
+                                       return OPJ_FALSE;
+                               }
 
-       /* INDEX >> */
-       j2k->cstr_info = cstr_info;
-       if (cstr_info) {
-               int compno;
-               cstr_info->tile = (opj_tile_info_t *) opj_malloc(cp->tw * cp->th * sizeof(opj_tile_info_t));
-               cstr_info->image_w = image->x1 - image->x0;
-               cstr_info->image_h = image->y1 - image->y0;
-               cstr_info->prog = (&cp->tcps[0])->prg;
-               cstr_info->tw = cp->tw;
-               cstr_info->th = cp->th;
-               cstr_info->tile_x = cp->tdx;    /* new version parser */
-               cstr_info->tile_y = cp->tdy;    /* new version parser */
-               cstr_info->tile_Ox = cp->tx0;   /* new version parser */
-               cstr_info->tile_Oy = cp->ty0;   /* new version parser */
-               cstr_info->numcomps = image->numcomps;
-               cstr_info->numlayers = (&cp->tcps[0])->numlayers;
-               cstr_info->numdecompos = (int*) opj_malloc(image->numcomps * sizeof(int));
-               for (compno=0; compno < image->numcomps; compno++) {
-                       cstr_info->numdecompos[compno] = (&cp->tcps[0])->tccps->numresolutions - 1;
+                               /* Read 2 bytes from buffer as the new marker ID */
+                               opj_read_bytes(p_j2k->m_specific_param.m_decoder.m_header_data,&l_current_marker,2);
+                       }
+               }
+               else {
+                       /* Indicate we will try to read a new tile-part header*/
+                       p_j2k->m_specific_param.m_decoder.m_skip_data = 0;
+                       p_j2k->m_specific_param.m_decoder.m_can_decode = 0;
+                       p_j2k->m_specific_param.m_decoder.m_state = J2K_STATE_TPHSOT;
+
+                       /* Try to read 2 bytes (the next marker ID) from stream and copy them into the buffer */
+                       if (opj_stream_read_data(p_stream,p_j2k->m_specific_param.m_decoder.m_header_data,2,p_manager) != 2) {
+                               opj_event_msg_v2(p_manager, EVT_ERROR, "Stream too short\n");
+                               return OPJ_FALSE;
+                       }
+
+                       /* Read 2 bytes from buffer as the new marker ID */
+                       opj_read_bytes(p_j2k->m_specific_param.m_decoder.m_header_data,&l_current_marker,2);
                }
-               cstr_info->D_max = 0.0;         /* ADD Marcela */
-               cstr_info->main_head_start = cio_tell(cio); /* position of SOC */
-               cstr_info->maxmarknum = 100;
-               cstr_info->marker = (opj_marker_info_t *) opj_malloc(cstr_info->maxmarknum * sizeof(opj_marker_info_t));
-               cstr_info->marknum = 0;
        }
-       /* << INDEX */
 
-       j2k_write_soc(j2k);
-       j2k_write_siz(j2k);
-       j2k_write_cod(j2k);
-       j2k_write_qcd(j2k);
+       /* Current marker is the EOC marker ?*/
+       if (l_current_marker == J2K_MS_EOC) {
+               if (p_j2k->m_specific_param.m_decoder.m_state != J2K_STATE_EOC ){
+                       p_j2k->m_current_tile_number = 0;
+                       p_j2k->m_specific_param.m_decoder.m_state = J2K_STATE_EOC;
+               }
+       }
 
-       if(cp->cinema){
-               for (compno = 1; compno < image->numcomps; compno++) {
-                       j2k_write_coc(j2k, compno);
-                       j2k_write_qcc(j2k, compno);
+       /* FIXME DOC ???*/
+       if ( ! p_j2k->m_specific_param.m_decoder.m_can_decode) {
+               l_tcp = p_j2k->m_cp.tcps + p_j2k->m_current_tile_number;
+               l_nb_tiles = p_j2k->m_cp.th * p_j2k->m_cp.tw;
+
+               while( (p_j2k->m_current_tile_number < l_nb_tiles) && (l_tcp->m_data == 00) ) {
+                       ++p_j2k->m_current_tile_number;
+                       ++l_tcp;
+               }
+
+               if (p_j2k->m_current_tile_number == l_nb_tiles) {
+                       *p_go_on = OPJ_FALSE;
+                       return OPJ_TRUE;
                }
        }
 
-       for (compno = 0; compno < image->numcomps; compno++) {
-               opj_tcp_t *tcp = &cp->tcps[0];
-               if (tcp->tccps[compno].roishift)
-                       j2k_write_rgn(j2k, compno, 0);
+       /*FIXME ???*/
+       if (! tcd_init_decode_tile(p_j2k->m_tcd, p_j2k->m_current_tile_number)) {
+               opj_event_msg_v2(p_manager, EVT_ERROR, "Cannot decode tile, memory error\n");
+               return OPJ_FALSE;
        }
-       if (cp->comment != NULL) {
-               j2k_write_com(j2k);
+
+       opj_event_msg_v2(p_manager, EVT_INFO, "Header of tile %d / %d has been read.\n",
+                       p_j2k->m_current_tile_number, (p_j2k->m_cp.th * p_j2k->m_cp.tw) - 1);
+
+       *p_tile_index = p_j2k->m_current_tile_number;
+       *p_go_on = OPJ_TRUE;
+       *p_data_size = tcd_get_decoded_tile_size(p_j2k->m_tcd);
+       *p_tile_x0 = p_j2k->m_tcd->tcd_image->tiles->x0;
+       *p_tile_y0 = p_j2k->m_tcd->tcd_image->tiles->y0;
+       *p_tile_x1 = p_j2k->m_tcd->tcd_image->tiles->x1;
+       *p_tile_y1 = p_j2k->m_tcd->tcd_image->tiles->y1;
+       *p_nb_comps = p_j2k->m_tcd->tcd_image->tiles->numcomps;
+
+        p_j2k->m_specific_param.m_decoder.m_state |= 0x0080;// FIXME J2K_DEC_STATE_DATA;
+
+       return OPJ_TRUE;
+}
+
+
+opj_bool j2k_decode_tile (     opj_j2k_v2_t * p_j2k,
+                                                       OPJ_UINT32 p_tile_index,
+                                                       OPJ_BYTE * p_data,
+                                                       OPJ_UINT32 p_data_size,
+                                                       opj_stream_private_t *p_stream,
+                                                       opj_event_mgr_t * p_manager )
+{
+       OPJ_UINT32 l_current_marker;
+       OPJ_BYTE l_data [2];
+       opj_tcp_v2_t * l_tcp;
+
+       /* preconditions */
+       assert(p_stream != 00);
+       assert(p_j2k != 00);
+       assert(p_manager != 00);
+
+       if ( !(p_j2k->m_specific_param.m_decoder.m_state & 0x0080/*FIXME J2K_DEC_STATE_DATA*/)
+               || (p_tile_index != p_j2k->m_current_tile_number) ) {
+               return OPJ_FALSE;
+       }
+
+       l_tcp = &(p_j2k->m_cp.tcps[p_tile_index]);
+       if (! l_tcp->m_data) {
+               j2k_tcp_destroy(l_tcp);
+               return OPJ_FALSE;
        }
 
-       j2k->totnum_tp = j2k_calculate_tp(cp,image->numcomps,image,j2k);
-       /* TLM Marker*/
-       if(cp->cinema){
-               j2k_write_tlm(j2k);
-               if (cp->cinema == CINEMA4K_24) {
-                       j2k_write_poc(j2k);
-               }
+       if (! tcd_decode_tile_v2(       p_j2k->m_tcd,
+                                                               l_tcp->m_data,
+                                                               l_tcp->m_data_size,
+                                                               p_tile_index,
+                                                               p_j2k->cstr_index) ) {
+               j2k_tcp_destroy(l_tcp);
+               p_j2k->m_specific_param.m_decoder.m_state |= 0x8000;//FIXME J2K_DEC_STATE_ERR;
+               return OPJ_FALSE;
        }
 
-       /* uncomment only for testing JPSEC marker writing */
-       /* j2k_write_sec(j2k); */
-
-       /* INDEX >> */
-       if(cstr_info) {
-               cstr_info->main_head_end = cio_tell(cio) - 1;
+       if (! tcd_update_tile_data(p_j2k->m_tcd,p_data,p_data_size)) {
+               return OPJ_FALSE;
        }
-       /* << INDEX */
-       /**** Main Header ENDS here ***/
 
-       /* create the tile encoder */
-       tcd = tcd_create(j2k->cinfo);
+       /* To avoid to destroy the tcp which can be useful when we try to decode a tile decoded before (cf j2k_random_tile_access)
+        * we destroy just the data which will be re-read in read_tile_header*/
+       /*j2k_tcp_destroy(l_tcp);
+       p_j2k->m_tcd->tcp = 0;*/
+       j2k_tcp_data_destroy(l_tcp);
 
-       /* encode each tile */
-       for (tileno = 0; tileno < cp->tw * cp->th; tileno++) {
-               int pino;
-               int tilepartno=0;
-               /* UniPG>> */
-               int acc_pack_num = 0;
-               /* <<UniPG */
+       p_j2k->m_specific_param.m_decoder.m_can_decode = 0;
+       p_j2k->m_specific_param.m_decoder.m_state &= (~ (0x0080));// FIXME J2K_DEC_STATE_DATA);
 
+       if (p_j2k->m_specific_param.m_decoder.m_state != 0x0100){ //FIXME J2K_DEC_STATE_EOC)
+               if (opj_stream_read_data(p_stream,l_data,2,p_manager) != 2) {
+                       opj_event_msg_v2(p_manager, EVT_ERROR, "Stream too short\n");
+                       return OPJ_FALSE;
+               }
 
-               opj_tcp_t *tcp = &cp->tcps[tileno];
-               opj_event_msg(j2k->cinfo, EVT_INFO, "tile number %d / %d\n", tileno + 1, cp->tw * cp->th);
+               opj_read_bytes(l_data,&l_current_marker,2);
 
-               j2k->curtileno = tileno;
-               j2k->cur_tp_num = 0;
-               tcd->cur_totnum_tp = j2k->cur_totnum_tp[j2k->curtileno];
-               /* initialisation before tile encoding  */
-               if (tileno == 0) {
-                       tcd_malloc_encode(tcd, image, cp, j2k->curtileno);
-               } else {
-                       tcd_init_encode(tcd, image, cp, j2k->curtileno);
+               if (l_current_marker == J2K_MS_EOC) {
+                       p_j2k->m_current_tile_number = 0;
+                       p_j2k->m_specific_param.m_decoder.m_state =  0x0100;//FIXME J2K_DEC_STATE_EOC;
                }
-
-               /* INDEX >> */
-               if(cstr_info) {
-                       cstr_info->tile[j2k->curtileno].start_pos = cio_tell(cio) + j2k->pos_correction;
-                       cstr_info->tile[j2k->curtileno].maxmarknum = 10;
-                       cstr_info->tile[j2k->curtileno].marker = (opj_marker_info_t *) opj_malloc(cstr_info->tile[j2k->curtileno].maxmarknum * sizeof(opj_marker_info_t));
-                       cstr_info->tile[j2k->curtileno].marknum = 0;
+               else if (l_current_marker != J2K_MS_SOT)
+               {
+                       opj_event_msg_v2(p_manager, EVT_ERROR, "Stream too short, expected SOT\n");
+                       return OPJ_FALSE;
                }
-               /* << INDEX */
+       }
 
-               for(pino = 0; pino <= tcp->numpocs; pino++) {
-                       int tot_num_tp;
-                       tcd->cur_pino=pino;
+       return OPJ_TRUE;
+}
 
-                       /*Get number of tile parts*/
-                       tot_num_tp = j2k_get_num_tp(cp,pino,tileno);
-                       tcd->tp_pos = cp->tp_pos;
 
-                       for(tilepartno = 0; tilepartno < tot_num_tp ; tilepartno++){
-                               j2k->tp_num = tilepartno;
-                               /* INDEX >> */
-                               if(cstr_info)
-                                       cstr_info->tile[j2k->curtileno].tp[j2k->cur_tp_num].tp_start_pos =
-                                       cio_tell(cio) + j2k->pos_correction;
-                               /* << INDEX */
-                               j2k_write_sot(j2k);
+opj_bool j2k_update_image_data (opj_tcd_v2_t * p_tcd, OPJ_BYTE * p_data, opj_image_t* p_output_image)
+{
+       OPJ_UINT32 i,j,k = 0;
+       OPJ_UINT32 l_width_src,l_height_src;
+       OPJ_UINT32 l_width_dest,l_height_dest;
+       OPJ_INT32 l_offset_x0_src, l_offset_y0_src, l_offset_x1_src, l_offset_y1_src;
+       OPJ_INT32 l_start_offset_src, l_line_offset_src, l_end_offset_src ;
+       OPJ_UINT32 l_start_x_dest , l_start_y_dest;
+       OPJ_UINT32 l_x0_dest, l_y0_dest, l_x1_dest, l_y1_dest;
+       OPJ_INT32 l_start_offset_dest, l_line_offset_dest;
 
-                               if(j2k->cur_tp_num == 0 && cp->cinema == 0){
-                                       for (compno = 1; compno < image->numcomps; compno++) {
-                                               j2k_write_coc(j2k, compno);
-                                               j2k_write_qcc(j2k, compno);
-                                       }
-                                       if (cp->tcps[tileno].numpocs) {
-                                               j2k_write_poc(j2k);
-                                       }
-                               }
+       opj_image_comp_t * l_img_comp_src = 00;
+       opj_image_comp_t * l_img_comp_dest = 00;
 
-                               /* INDEX >> */
-                               if(cstr_info)
-                                       cstr_info->tile[j2k->curtileno].tp[j2k->cur_tp_num].tp_end_header =
-                                       cio_tell(cio) + j2k->pos_correction + 1;
-                               /* << INDEX */
+       opj_tcd_tilecomp_v2_t * l_tilec = 00;
+       opj_image_t * l_image_src = 00;
+       OPJ_UINT32 l_size_comp, l_remaining;
+       OPJ_INT32 * l_dest_ptr;
+       opj_tcd_resolution_v2_t* l_res= 00;
 
-                               j2k_write_sod(j2k, tcd);
+       l_tilec = p_tcd->tcd_image->tiles->comps;
+       l_image_src = p_tcd->image;
+       l_img_comp_src = l_image_src->comps;
 
-                               /* INDEX >> */
-                               if(cstr_info) {
-                                       cstr_info->tile[j2k->curtileno].tp[j2k->cur_tp_num].tp_end_pos =
-                                               cio_tell(cio) + j2k->pos_correction - 1;
-                                       cstr_info->tile[j2k->curtileno].tp[j2k->cur_tp_num].tp_start_pack =
-                                               acc_pack_num;
-                                       cstr_info->tile[j2k->curtileno].tp[j2k->cur_tp_num].tp_numpacks =
-                                               cstr_info->packno - acc_pack_num;
-                                       acc_pack_num = cstr_info->packno;
-                               }
-                               /* << INDEX */
+       l_img_comp_dest = p_output_image->comps;
 
-                               j2k->cur_tp_num++;
-                       }                       
-               }
-               if(cstr_info) {
-                       cstr_info->tile[j2k->curtileno].end_pos = cio_tell(cio) + j2k->pos_correction - 1;
+       for (i=0; i<l_image_src->numcomps; i++) {
+
+               /* Allocate output component buffer if necessary */
+               if (!l_img_comp_dest->data) {
+
+                       l_img_comp_dest->data = (OPJ_INT32*) opj_calloc(l_img_comp_dest->w * l_img_comp_dest->h, sizeof(OPJ_INT32));
+                       if (! l_img_comp_dest->data) {
+                               return OPJ_FALSE;
+                       }
                }
 
+               /* Copy info from decoded comp image to output image */
+               l_img_comp_dest->resno_decoded = l_img_comp_src->resno_decoded;
 
-               /*
-               if (tile->PPT) { // BAD PPT !!! 
-               FILE *PPT_file;
-               int i;
-               PPT_file=fopen("PPT","rb");
-               fprintf(stderr,"%c%c%c%c",255,97,tile->len_ppt/256,tile->len_ppt%256);
-               for (i=0;i<tile->len_ppt;i++) {
-               unsigned char elmt;
-               fread(&elmt, 1, 1, PPT_file);
-               fwrite(&elmt,1,1,f);
+               /*-----*/
+               /* Compute the precision of the output buffer */
+               l_size_comp = l_img_comp_src->prec >> 3; /*(/ 8)*/
+               l_remaining = l_img_comp_src->prec & 7;  /* (%8) */
+               l_res = l_tilec->resolutions + l_img_comp_src->resno_decoded;
+
+               if (l_remaining) {
+                       ++l_size_comp;
                }
-               fclose(PPT_file);
-               unlink("PPT");
+
+               if (l_size_comp == 3) {
+                       l_size_comp = 4;
                }
-               */
+               /*-----*/
 
-       }
+               /* Current tile component size*/
+               /*if (i == 0) {
+               fprintf(stdout, "SRC: l_res_x0=%d, l_res_x1=%d, l_res_y0=%d, l_res_y1=%d\n",
+                               l_res->x0, l_res->x1, l_res->y0, l_res->y1);
+               }*/
 
-       /* destroy the tile encoder */
-       tcd_free_encode(tcd);
-       tcd_destroy(tcd);
+               l_width_src = (l_res->x1 - l_res->x0);
+               l_height_src = (l_res->y1 - l_res->y0);
 
-       opj_free(j2k->cur_totnum_tp);
+               /* Border of the current output component*/
+               l_x0_dest = int_ceildivpow2(l_img_comp_dest->x0, l_img_comp_dest->factor);
+               l_y0_dest = int_ceildivpow2(l_img_comp_dest->y0, l_img_comp_dest->factor);
+               l_x1_dest = l_x0_dest + l_img_comp_dest->w;
+               l_y1_dest = l_y0_dest + l_img_comp_dest->h;
 
-       j2k_write_eoc(j2k);
+               /*if (i == 0) {
+               fprintf(stdout, "DEST: l_x0_dest=%d, l_x1_dest=%d, l_y0_dest=%d, l_y1_dest=%d (%d)\n",
+                               l_x0_dest, l_x1_dest, l_y0_dest, l_y1_dest, l_img_comp_dest->factor );
+               }*/
 
-       if(cstr_info) {
-               cstr_info->codestream_size = cio_tell(cio) + j2k->pos_correction;
-               /* UniPG>> */
-               /* The following adjustment is done to adjust the codestream size */
-               /* if SOD is not at 0 in the buffer. Useful in case of JP2, where */
-               /* the first bunch of bytes is not in the codestream              */
-               cstr_info->codestream_size -= cstr_info->main_head_start;
-               /* <<UniPG */
-       }
+               /*-----*/
+               /* Compute the area (l_offset_x0_src, l_offset_y0_src, l_offset_x1_src, l_offset_y1_src)
+                * of the input buffer (decoded tile component) which will be move
+                * in the output buffer. Compute the area of the output buffer (l_start_x_dest,
+                * l_start_y_dest, l_width_dest, l_height_dest)  which will be modified
+                * by this input area.
+                * */
+               if ( l_x0_dest < l_res->x0 ) {
+                       l_start_x_dest = l_res->x0 - l_x0_dest;
+                       l_offset_x0_src = 0;
 
-#ifdef USE_JPWL
-       /*
-       preparation of JPWL marker segments
-       */
-       if(cp->epc_on) {
+                       if ( l_x1_dest >= l_res->x1 ) {
+                               l_width_dest = l_width_src;
+                               l_offset_x1_src = 0;
+                       }
+                       else {
+                               l_width_dest = l_x1_dest - l_res->x0 ;
+                               l_offset_x1_src = l_width_src - l_width_dest;
+                       }
+               }
+               else {
+                       l_start_x_dest = 0 ;
+                       l_offset_x0_src = l_x0_dest - l_res->x0;
 
-               /* encode according to JPWL */
-               jpwl_encode(j2k, cio, image);
+                       if ( l_x1_dest >= l_res->x1 ) {
+                               l_width_dest = l_width_src - l_offset_x0_src;
+                               l_offset_x1_src = 0;
+                       }
+                       else {
+                               l_width_dest = l_img_comp_dest->w ;
+                               l_offset_x1_src = l_res->x1 - l_x1_dest;
+                       }
+               }
 
-       }
-#endif /* USE_JPWL */
+               if ( l_y0_dest < l_res->y0 ) {
+                       l_start_y_dest = l_res->y0 - l_y0_dest;
+                       l_offset_y0_src = 0;
 
-       return OPJ_TRUE;
-}
+                       if ( l_y1_dest >= l_res->y1 ) {
+                               l_height_dest = l_height_src;
+                               l_offset_y1_src = 0;
+                       }
+                       else {
+                               l_height_dest = l_y1_dest - l_res->y0 ;
+                               l_offset_y1_src =  l_height_src - l_height_dest;
+                       }
+               }
+               else {
+                       l_start_y_dest = 0 ;
+                       l_offset_y0_src = l_y0_dest - l_res->y0;
 
-static void j2k_add_mhmarker(opj_codestream_info_t *cstr_info, unsigned short int type, int pos, int len) {
+                       if ( l_y1_dest >= l_res->y1 ) {
+                               l_height_dest = l_height_src - l_offset_y0_src;
+                               l_offset_y1_src = 0;
+                       }
+                       else {
+                               l_height_dest = l_img_comp_dest->h ;
+                               l_offset_y1_src = l_res->y1 - l_y1_dest;
+                       }
+               }
 
-       if (!cstr_info)
-               return;
+               if( (l_offset_x0_src < 0 ) || (l_offset_y0_src < 0 ) || (l_offset_x1_src < 0 ) || (l_offset_y1_src < 0 ) ){
+                       return OPJ_FALSE;
+               }
+               /*-----*/
 
-       /* expand the list? */
-       if ((cstr_info->marknum + 1) > cstr_info->maxmarknum) {
-               cstr_info->maxmarknum = 100 + (int) ((float) cstr_info->maxmarknum * 1.0F);
-               cstr_info->marker = (opj_marker_info_t*)opj_realloc(cstr_info->marker, cstr_info->maxmarknum);
-       }
+               /* Compute the input buffer offset */
+               l_start_offset_src = l_offset_x0_src + l_offset_y0_src * l_width_src;
+               l_line_offset_src = l_offset_x1_src + l_offset_x0_src;
+               l_end_offset_src = l_offset_y1_src * l_width_src - l_offset_x0_src;
 
-       /* add the marker */
-       cstr_info->marker[cstr_info->marknum].type = type;
-       cstr_info->marker[cstr_info->marknum].pos = pos;
-       cstr_info->marker[cstr_info->marknum].len = len;
-       cstr_info->marknum++;
+               /* Compute the output buffer offset */
+               l_start_offset_dest = l_start_x_dest + l_start_y_dest * l_img_comp_dest->w;
+               l_line_offset_dest = l_img_comp_dest->w - l_width_dest;
 
-}
+               /* Move the output buffer to the first place where we will write*/
+               l_dest_ptr = l_img_comp_dest->data + l_start_offset_dest;
 
-static void j2k_add_tlmarker( int tileno, opj_codestream_info_t *cstr_info, unsigned short int type, int pos, int len) {
+               /*if (i == 0) {
+                       fprintf(stdout, "COMPO[%d]:\n",i);
+                       fprintf(stdout, "SRC: l_start_x_src=%d, l_start_y_src=%d, l_width_src=%d, l_height_src=%d\n"
+                                       "\t tile offset:%d, %d, %d, %d\n"
+                                       "\t buffer offset: %d; %d, %d\n",
+                                       l_res->x0, l_res->y0, l_width_src, l_height_src,
+                                       l_offset_x0_src, l_offset_y0_src, l_offset_x1_src, l_offset_y1_src,
+                                       l_start_offset_src, l_line_offset_src, l_end_offset_src);
 
+                       fprintf(stdout, "DEST: l_start_x_dest=%d, l_start_y_dest=%d, l_width_dest=%d, l_height_dest=%d\n"
+                                       "\t start offset: %d, line offset= %d\n",
+                                       l_start_x_dest, l_start_y_dest, l_width_dest, l_height_dest, l_start_offset_dest, l_line_offset_dest);
+               }*/
 
-  opj_marker_info_t *marker;
 
-       if (!cstr_info)
-               return;
+               switch (l_size_comp) {
+                       case 1:
+                               {
+                                       OPJ_CHAR * l_src_ptr = (OPJ_CHAR*) p_data;
+                                       l_src_ptr += l_start_offset_src; /* Move to the first place where we will read*/
 
-       /* expand the list? */
-       if ((cstr_info->tile[tileno].marknum + 1) > cstr_info->tile[tileno].maxmarknum) {
-               cstr_info->tile[tileno].maxmarknum = 100 + (int) ((float) cstr_info->tile[tileno].maxmarknum * 1.0F);
-               cstr_info->tile[tileno].marker = (opj_marker_info_t*)opj_realloc(cstr_info->tile[tileno].marker, cstr_info->maxmarknum);
-       }
+                                       if (l_img_comp_src->sgnd) {
+                                               for (j = 0 ; j < l_height_dest ; ++j) {
+                                                       for ( k = 0 ; k < l_width_dest ; ++k) {
+                                                               *(l_dest_ptr++) = (OPJ_INT32) (*(l_src_ptr++)); /* Copy only the data needed for the output image */
+                                                       }
 
-       marker = &(cstr_info->tile[tileno].marker[cstr_info->tile[tileno].marknum]);
+                                                       l_dest_ptr+= l_line_offset_dest; /* Move to the next place where we will write */
+                                                       l_src_ptr += l_line_offset_src ; /* Move to the next place where we will read */
+                                               }
+                                       }
+                                       else {
+                                               for ( j = 0 ; j < l_height_dest ; ++j ) {
+                                                       for ( k = 0 ; k < l_width_dest ; ++k) {
+                                                               *(l_dest_ptr++) = (OPJ_INT32) ((*(l_src_ptr++))&0xff);
+                                                       }
 
-       /* add the marker */
-       marker->type = type;
-       marker->pos = pos;
-       marker->len = len;
-       cstr_info->tile[tileno].marknum++;
-}
+                                                       l_dest_ptr+= l_line_offset_dest;
+                                                       l_src_ptr += l_line_offset_src;
+                                               }
+                                       }
 
+                                       l_src_ptr += l_end_offset_src; /* Move to the end of this component-part of the input buffer */
+                                       p_data = (OPJ_BYTE*) l_src_ptr; /* Keep the current position for the next component-part */
+                               }
+                               break;
+                       case 2:
+                               {
+                                       OPJ_INT16 * l_src_ptr = (OPJ_INT16 *) p_data;
+                                       l_src_ptr += l_start_offset_src;
 
+                                       if (l_img_comp_src->sgnd) {
+                                               for (j=0;j<l_height_dest;++j) {
+                                                       for (k=0;k<l_width_dest;++k) {
+                                                               *(l_dest_ptr++) = *(l_src_ptr++);
+                                                       }
 
+                                                       l_dest_ptr+= l_line_offset_dest;
+                                                       l_src_ptr += l_line_offset_src ;
+                                               }
+                                       }
+                                       else {
+                                               for (j=0;j<l_height_dest;++j) {
+                                                       for (k=0;k<l_width_dest;++k) {
+                                                               *(l_dest_ptr++) = (*(l_src_ptr++))&0xffff;
+                                                       }
 
-/*
- * -----------------------------------------------------------------------
- * -----------------------------------------------------------------------
- * -----------------------------------------------------------------------
- */
+                                                       l_dest_ptr+= l_line_offset_dest;
+                                                       l_src_ptr += l_line_offset_src ;
+                                               }
+                                       }
+
+                                       l_src_ptr += l_end_offset_src;
+                                       p_data = (OPJ_BYTE*) l_src_ptr;
+                               }
+                               break;
+                       case 4:
+                               {
+                                       OPJ_INT32 * l_src_ptr = (OPJ_INT32 *) p_data;
+                                       l_src_ptr += l_start_offset_src;
+
+                                       for (j=0;j<l_height_dest;++j) {
+                                               for (k=0;k<l_width_dest;++k) {
+                                                       *(l_dest_ptr++) = (*(l_src_ptr++));
+                                               }
+
+                                               l_dest_ptr+= l_line_offset_dest;
+                                               l_src_ptr += l_line_offset_src ;
+                                       }
+
+                                       l_src_ptr += l_end_offset_src;
+                                       p_data = (OPJ_BYTE*) l_src_ptr;
+                               }
+                               break;
+               }
+
+               ++l_img_comp_dest;
+               ++l_img_comp_src;
+               ++l_tilec;
+       }
 
-/**
- * Ends the decompression procedures and possibiliy add data to be read after the
- * codestream.
- */
-opj_bool j2k_end_decompress(
-                                               opj_j2k_v2_t *p_j2k,
-                                               opj_stream_private_t *p_stream,
-                                               opj_event_mgr_t * p_manager)
-{
        return OPJ_TRUE;
 }
 
 /**
- * Reads a jpeg2000 codestream header structure.
-
+ * Sets the given area to be decoded. This function should be called right after opj_read_header and before any tile header reading.
  *
- * @param p_stream the stream to read data from.
- * @param p_j2k the jpeg2000 codec.
- * @param p_manager the user event manager.
+ * @param      p_j2k                   the jpeg2000 codec.
+ * @param      p_start_x               the left position of the rectangle to decode (in image coordinates).
+ * @param      p_end_x                 the right position of the rectangle to decode (in image coordinates).
+ * @param      p_start_y               the up position of the rectangle to decode (in image coordinates).
+ * @param      p_end_y                 the bottom position of the rectangle to decode (in image coordinates).
+ * @param      p_manager               the user event manager
  *
- * @return true if the box is valid.
+ * @return     true                    if the area could be set.
  */
-opj_bool j2k_read_header(      struct opj_stream_private *p_stream,
-                                                       opj_j2k_v2_t* p_j2k,
-                                                       opj_file_info_t* p_file_info,
-                                                       struct opj_event_mgr* p_manager )
+opj_bool j2k_set_decode_area(  opj_j2k_v2_t *p_j2k,
+                                                               opj_image_t* p_image,
+                                                               OPJ_INT32 p_start_x, OPJ_INT32 p_start_y,
+                                                               OPJ_INT32 p_end_x, OPJ_INT32 p_end_y,
+                                                               struct opj_event_mgr * p_manager )
 {
-       /* preconditions */
-       assert(p_j2k != 00);
-       assert(p_stream != 00);
-       assert(p_manager != 00);
+       opj_cp_v2_t * l_cp = &(p_j2k->m_cp);
+       opj_image_t * l_image = p_j2k->m_private_image;
 
-       /* create an empty image header */
-       p_j2k->m_image_header = opj_image_header_create0();
-       if (! p_j2k->m_image_header) {
+       OPJ_UINT32 it_comp;
+       OPJ_INT32 l_comp_x1, l_comp_y1;
+       opj_image_comp_t* l_img_comp = NULL;
+
+       /* Check if we are read the main header */
+       if (p_j2k->m_specific_param.m_decoder.m_state != J2K_STATE_TPHSOT) { // FIXME J2K_DEC_STATE_TPHSOT)
+               opj_event_msg_v2(p_manager, EVT_ERROR, "Need to decode the main header before begin to decode the remaining codestream");
                return OPJ_FALSE;
        }
 
-       /* customization of the validation */
-       j2k_setup_decoding_validation(p_j2k);
+       if ( !p_start_x && !p_start_y && !p_end_x && !p_end_y){
+               opj_event_msg_v2(p_manager, EVT_INFO, "No decoded area parameters, set the decoded area to the all image\n");
 
-       /* validation of the parameters codec */
-       if (! j2k_exec(p_j2k, p_j2k->m_validation_list, p_stream,p_manager)) {
-               opj_image_header_destroy(p_j2k->m_image_header);
-               p_j2k->m_image_header = NULL;
-               return OPJ_FALSE;
+               p_j2k->m_specific_param.m_decoder.m_start_tile_x = 0;
+               p_j2k->m_specific_param.m_decoder.m_start_tile_y = 0;
+               p_j2k->m_specific_param.m_decoder.m_end_tile_x = l_cp->tw;
+               p_j2k->m_specific_param.m_decoder.m_end_tile_y = l_cp->th;
+
+               return OPJ_TRUE;
        }
 
-       /* customization of the encoding */
-       j2k_setup_header_reading(p_j2k);
+       /* ----- */
+       /* Check if the positions provided by the user are correct */
 
-       /* read header */
-       if (! j2k_exec (p_j2k,p_j2k->m_procedure_list,p_stream,p_manager)) {
-               opj_image_header_destroy(p_j2k->m_image_header);
-               p_j2k->m_image_header = NULL;
+       /* Left */
+       if (p_start_x > l_image->x1 ) {
+               opj_event_msg_v2(p_manager, EVT_ERROR,
+                       "Left position of the decoded area (region_x0=%d) is outside the image area (Xsiz=%d).\n",
+                       p_start_x, l_image->x1);
                return OPJ_FALSE;
        }
+       else if (p_start_x < l_image->x0){
+               opj_event_msg_v2(p_manager, EVT_WARNING,
+                               "Left position of the decoded area (region_x0=%d) is outside the image area (XOsiz=%d).\n",
+                               p_start_x, l_image->x0);
+               p_j2k->m_specific_param.m_decoder.m_start_tile_x = 0;
+               p_image->x0 = l_image->x0;
+       }
+       else {
+               p_j2k->m_specific_param.m_decoder.m_start_tile_x = (p_start_x - l_cp->tx0) / l_cp->tdx;
+               p_image->x0 = p_start_x;
+       }
 
-       /* If necessary copy j2k header information into the output structure */
-       if (p_file_info->file_info_flag & OPJ_J2K_INFO){
-               fill_cstr_info( &(p_file_info->codestream_info), p_j2k, p_manager);
+       /* Up */
+       if (p_start_y > l_image->y1){
+               opj_event_msg_v2(p_manager, EVT_ERROR,
+                               "Up position of the decoded area (region_y0=%d) is outside the image area (Ysiz=%d).\n",
+                               p_start_y, l_image->y1);
+               return OPJ_FALSE;
+       }
+       else if (p_start_y < l_image->y0){
+               opj_event_msg_v2(p_manager, EVT_WARNING,
+                               "Up position of the decoded area (region_y0=%d) is outside the image area (YOsiz=%d).\n",
+                               p_start_y, l_image->y0);
+               p_j2k->m_specific_param.m_decoder.m_start_tile_y = 0;
+               p_image->y0 = l_image->y0;
+       }
+       else {
+               p_j2k->m_specific_param.m_decoder.m_start_tile_y = (p_start_y - l_cp->ty0) / l_cp->tdy;
+               p_image->y0 = p_start_y;
        }
 
-       /* If necessary copy image header information into the output structure */
-       if (p_file_info->file_info_flag & OPJ_IMG_INFO){
-               fill_img_info( &(p_file_info->img_info), p_j2k, p_manager);
+       /* Right */
+       if (p_end_x < l_image->x0) {
+               opj_event_msg_v2(p_manager, EVT_ERROR,
+                       "Right position of the decoded area (region_x1=%d) is outside the image area (XOsiz=%d).\n",
+                       p_end_x, l_image->x0);
+               return OPJ_FALSE;
+       }
+       else if (p_end_x > l_image->x1) {
+               opj_event_msg_v2(p_manager, EVT_WARNING,
+                       "Right position of the decoded area (region_x1=%d) is outside the image area (Xsiz=%d).\n",
+                       p_end_x, l_image->x1);
+               p_j2k->m_specific_param.m_decoder.m_end_tile_x = l_cp->tw;
+               p_image->x1 = l_image->x1;
+       }
+       else {
+               p_j2k->m_specific_param.m_decoder.m_end_tile_x = int_ceildiv((p_end_x - l_cp->tx0), l_cp->tdx);
+               p_image->x1 = p_end_x;
        }
 
-       return OPJ_TRUE;
-}
+       /* Bottom */
+       if (p_end_y < l_image->y0) {
+               opj_event_msg_v2(p_manager, EVT_ERROR,
+                       "Right position of the decoded area (region_y1=%d) is outside the image area (YOsiz=%d).\n",
+                       p_end_y, l_image->y0);
+               return OPJ_FALSE;
+       }
+       if (p_end_y > l_image->y1){
+               opj_event_msg_v2(p_manager, EVT_WARNING,
+                       "Bottom position of the decoded area (region_y1=%d) is outside the image area (Ysiz=%d).\n",
+                       p_end_y, l_image->y1);
+               p_j2k->m_specific_param.m_decoder.m_end_tile_y = l_cp->th;
+               p_image->y1 = l_image->y1;
+       }
+       else{
+               p_j2k->m_specific_param.m_decoder.m_end_tile_y = int_ceildiv((p_end_y - l_cp->ty0), l_cp->tdy);
+               p_image->y1 = p_end_y;
+       }
+       /* ----- */
 
-/**
- * Fill the image info struct from information read from main header.
- */
-opj_bool fill_img_info(opj_image_header_t* img_info, opj_j2k_v2_t* p_j2k, struct opj_event_mgr* p_manager)
-{
-       opj_image_header_t* l_image_header = p_j2k->m_image_header;
-
-       img_info->x0 = l_image_header->x0;
-       img_info->y0 = l_image_header->y0;
-       img_info->x1 = l_image_header->x1;
-       img_info->y1 = l_image_header->y1;
-       img_info->numcomps = l_image_header->numcomps;
-
-       if (img_info->numcomps) {
-               img_info->comps = (opj_image_comp_header_t*)opj_malloc(img_info->numcomps * sizeof(opj_image_comp_header_t));
-               if (!img_info->comps){
-                       opj_event_msg_v2(p_manager, EVT_ERROR, "Not enough memory\n");
+       p_j2k->m_specific_param.m_decoder.m_discard_tiles = 1;
+
+       l_img_comp = p_image->comps;
+       for (it_comp=0; it_comp < p_image->numcomps; ++it_comp)
+       {
+               OPJ_INT32 l_h,l_w;
+
+               l_img_comp->x0 = int_ceildiv(p_image->x0, l_img_comp->dx);
+               l_img_comp->y0 = int_ceildiv(p_image->y0, l_img_comp->dy);
+               l_comp_x1 = int_ceildiv(p_image->x1, l_img_comp->dx);
+               l_comp_y1 = int_ceildiv(p_image->y1, l_img_comp->dy);
+
+               l_w = int_ceildivpow2(l_comp_x1, l_img_comp->factor)
+                               - int_ceildivpow2(l_img_comp->x0, l_img_comp->factor);
+               if (l_w < 0){
+                       opj_event_msg_v2(p_manager, EVT_ERROR,
+                               "Size x of the decoded component image is incorrect (comp[%d].w=%d).\n",
+                               it_comp, l_w);
                        return OPJ_FALSE;
                }
+               l_img_comp->w = l_w;
 
-               memcpy(img_info->comps, l_image_header->comps, img_info->numcomps * sizeof(opj_image_comp_header_t) );
-       }
-
-
-       img_info->icc_profile_len = l_image_header->icc_profile_len;
-       if (img_info->icc_profile_len) {
-               img_info->icc_profile_buf = (unsigned char*)opj_malloc(img_info->icc_profile_len * sizeof(unsigned char));
-               if (!img_info->icc_profile_buf){
-                       opj_event_msg_v2(p_manager, EVT_ERROR, "Not enough memory\n");
+               l_h = int_ceildivpow2(l_comp_y1, l_img_comp->factor)
+                               - int_ceildivpow2(l_img_comp->y0, l_img_comp->factor);
+               if (l_h < 0){
+                       opj_event_msg_v2(p_manager, EVT_ERROR,
+                               "Size y of the decoded component image is incorrect (comp[%d].h=%d).\n",
+                               it_comp, l_h);
                        return OPJ_FALSE;
                }
+               l_img_comp->h = l_h;
 
-               memcpy(img_info->icc_profile_buf, l_image_header->icc_profile_buf, img_info->icc_profile_len);
+               l_img_comp++;
        }
 
+       opj_event_msg_v2( p_manager, EVT_INFO,"Setting decoding area to %d,%d,%d,%d\n",
+                       p_image->x0, p_image->y0, p_image->x1, p_image->y1);
+
+
        return OPJ_TRUE;
 }
 
+
+/* ----------------------------------------------------------------------- */
+/* J2K / JPT decoder interface                                             */
+/* ----------------------------------------------------------------------- */
 /**
- * Fill the codestream info struct from information read from main header.
- */
-opj_bool fill_cstr_info(opj_codestream_info_v2_t* cstr_info, opj_j2k_v2_t* p_j2k, struct opj_event_mgr* p_manager)
+ * Creates a J2K decompression structure.
+ *
+ * @return a handle to a J2K decompressor if successful, NULL otherwise.
+*/
+opj_j2k_v2_t* j2k_create_decompress_v2()
 {
-
-       //opj_cp_v2_t l_cp = p_j2k->m_cp;
-       opj_image_header_t* l_image_header = p_j2k->m_image_header;
-       int it_tile, it_comp;
-       int nb_tiles, nb_comps;
-
-       cstr_info->image_w = l_image_header->x1 - l_image_header->x0;
-       cstr_info->image_h = l_image_header->y1 - l_image_header->y0;
-       cstr_info->numcomps = l_image_header->numcomps;
-       cstr_info->tw = p_j2k->m_cp.tw;
-       cstr_info->th = p_j2k->m_cp.th;
-       cstr_info->tdx = p_j2k->m_cp.tdx;
-       cstr_info->tdy = p_j2k->m_cp.tdy;
-       cstr_info->tx0 = p_j2k->m_cp.tx0;
-       cstr_info->ty0 = p_j2k->m_cp.ty0;
-
-       nb_tiles = p_j2k->m_cp.tw * p_j2k->m_cp.th;
-       nb_comps = l_image_header->numcomps;
-
-       cstr_info->tile = (opj_tile_info_v2_t*) opj_calloc(nb_tiles, sizeof(opj_tile_info_v2_t));
-       if (! p_j2k->cstr_info->tile) {
-               opj_event_msg_v2(p_manager, EVT_ERROR, "Not enough memory\n");
-               return OPJ_FALSE;
+       opj_j2k_v2_t *l_j2k = (opj_j2k_v2_t*) opj_malloc(sizeof(opj_j2k_v2_t));
+       if (!l_j2k) {
+               return 00;
        }
+       memset(l_j2k,0,sizeof(opj_j2k_v2_t));
 
-       for (it_tile=0; it_tile < nb_tiles; it_tile++){
-               cstr_info->tile[it_tile].tileno = it_tile;
-               cstr_info->tile[it_tile].csty = p_j2k->m_cp.tcps[it_tile].csty;
-               cstr_info->tile[it_tile].prg = p_j2k->m_cp.tcps[it_tile].prg;
-               cstr_info->tile[it_tile].mct = p_j2k->m_cp.tcps[it_tile].mct;
-               cstr_info->tile[it_tile].numlayers = p_j2k->m_cp.tcps[it_tile].numlayers;
-               // FIXME Number of tile part l_cstr_info->tile[it_tile].num_tps = ;
-
-               cstr_info->tile[it_tile].tccp_info =
-                       (opj_tccp_info_t*) opj_calloc(nb_comps, sizeof(opj_tccp_info_t));
-               if (! p_j2k->cstr_info->tile[it_tile].tccp_info) {
-                       opj_event_msg_v2(p_manager, EVT_ERROR, "Not enough memory\n");
-                       return OPJ_FALSE;
-               }
+       l_j2k->m_is_decoder = 1;
+       l_j2k->m_cp.m_is_decoder = 1;
 
-               for (it_comp=0; it_comp < nb_comps; it_comp++){
-                       cstr_info->tile[it_tile].tccp_info[it_comp].compno = it_comp;
-                       cstr_info->tile[it_tile].tccp_info[it_comp].cblkh = p_j2k->m_cp.tcps[it_tile].tccps[it_comp].cblkh;
-                       cstr_info->tile[it_tile].tccp_info[it_comp].cblkw = p_j2k->m_cp.tcps[it_tile].tccps[it_comp].cblkw;
-                       cstr_info->tile[it_tile].tccp_info[it_comp].cblksty = p_j2k->m_cp.tcps[it_tile].tccps[it_comp].cblksty;
-                       cstr_info->tile[it_tile].tccp_info[it_comp].csty = p_j2k->m_cp.tcps[it_tile].tccps[it_comp].csty;
-                       cstr_info->tile[it_tile].tccp_info[it_comp].numgbits = p_j2k->m_cp.tcps[it_tile].tccps[it_comp].numgbits;
-                       cstr_info->tile[it_tile].tccp_info[it_comp].numresolutions = p_j2k->m_cp.tcps[it_tile].tccps[it_comp].numresolutions;
-                       cstr_info->tile[it_tile].tccp_info[it_comp].qmfbid = p_j2k->m_cp.tcps[it_tile].tccps[it_comp].qmfbid;
-                       cstr_info->tile[it_tile].tccp_info[it_comp].qntsty = p_j2k->m_cp.tcps[it_tile].tccps[it_comp].qntsty;
-                       cstr_info->tile[it_tile].tccp_info[it_comp].roishift = p_j2k->m_cp.tcps[it_tile].tccps[it_comp].roishift;
-               }
+       l_j2k->m_specific_param.m_decoder.m_default_tcp = (opj_tcp_v2_t*) opj_malloc(sizeof(opj_tcp_v2_t));
+       if (!l_j2k->m_specific_param.m_decoder.m_default_tcp) {
+               j2k_destroy(l_j2k);
+               return 00;
        }
+       memset(l_j2k->m_specific_param.m_decoder.m_default_tcp,0,sizeof(opj_tcp_v2_t));
 
-       return OPJ_TRUE;
-}
+       l_j2k->m_specific_param.m_decoder.m_header_data = (OPJ_BYTE *) opj_malloc(J2K_DEFAULT_HEADER_SIZE);
+       if (! l_j2k->m_specific_param.m_decoder.m_header_data) {
+               j2k_destroy(l_j2k);
+               return 00;
+       }
 
+       l_j2k->m_specific_param.m_decoder.m_header_data_size = J2K_DEFAULT_HEADER_SIZE;
 
+       l_j2k->m_specific_param.m_decoder.m_tile_ind_to_dec = -1 ;
 
-/**
- * Sets up the procedures to do on reading header. Developpers wanting to extend the library can add their own reading procedures.
- */
-void j2k_setup_header_reading (opj_j2k_v2_t *p_j2k)
-{
-       // preconditions
-       assert(p_j2k != 00);
+       l_j2k->m_specific_param.m_decoder.m_last_sot_read_pos = 0 ;
 
-       opj_procedure_list_add_procedure(p_j2k->m_procedure_list,(void*)j2k_read_header_procedure);
+       /* codestream index creation */
+       l_j2k->cstr_index = j2k_create_cstr_index();
 
-       /* DEVELOPER CORNER, add your custom procedures */
-       opj_procedure_list_add_procedure(p_j2k->m_procedure_list,(void*)j2k_copy_default_tcp_and_create_tcd);
+                       /*(opj_codestream_index_t*) opj_malloc(sizeof(opj_codestream_index_t));
+       if (!l_j2k->cstr_index){
+               j2k_destroy(l_j2k);
+               return NULL;
+       }
 
-}
+       l_j2k->cstr_index->marker = (opj_marker_info_t*) opj_malloc(100 * sizeof(opj_marker_info_t));
+*/
 
-/**
- * Sets up the validation ,i.e. adds the procedures to lauch to make sure the codec parameters
- * are valid. Developpers wanting to extend the library can add their own validation procedures.
- */
-void j2k_setup_decoding_validation (opj_j2k_v2_t *p_j2k)
-{
-       // preconditions
-       assert(p_j2k != 00);
+       /* validation list creation */
+       l_j2k->m_validation_list = opj_procedure_list_create();
+       if (! l_j2k->m_validation_list) {
+               j2k_destroy(l_j2k);
+               return 00;
+       }
 
-       opj_procedure_list_add_procedure(p_j2k->m_validation_list, (void*)j2k_build_decoder);
-       opj_procedure_list_add_procedure(p_j2k->m_validation_list, (void*)j2k_decoding_validation);
-       /* DEVELOPER CORNER, add your custom validation procedure */
+       /* execution list creation */
+       l_j2k->m_procedure_list = opj_procedure_list_create();
+       if (! l_j2k->m_procedure_list) {
+               j2k_destroy(l_j2k);
+               return 00;
+       }
 
+       return l_j2k;
 }
 
-/**
- * Builds the cp decoder parameters to use to decode tile.
- */
-opj_bool j2k_build_decoder (
-                                               opj_j2k_v2_t * p_j2k,
-                                               opj_stream_private_t *p_stream,
-                                               opj_event_mgr_t * p_manager
-                                               )
-{
-       // add here initialization of cp
-       // copy paste of setup_decoder
-       return OPJ_TRUE;
-}
 
-/**
- * The default decoding validation procedure without any extension.
- *
- * @param      p_j2k                   the jpeg2000 codec to validate.
- * @param      p_stream                                the input stream to validate.
- * @param      p_manager               the user event manager.
- *
- * @return true if the parameters are correct.
- */
-opj_bool j2k_decoding_validation (
-                                                               opj_j2k_v2_t *p_j2k,
-                                                               opj_stream_private_t *p_stream,
-                                                               opj_event_mgr_t * p_manager
-                                                         )
+opj_codestream_index_t* j2k_create_cstr_index(void)
 {
-       opj_bool l_is_valid = OPJ_TRUE;
-
-       // preconditions
-       assert(p_j2k != 00);
-       assert(p_stream != 00);
-       assert(p_manager != 00);
-
+       opj_codestream_index_t* cstr_index = (opj_codestream_index_t*)
+                       opj_calloc(1,sizeof(opj_codestream_index_t));
+       if (!cstr_index)
+               return NULL;
 
-       /* STATE checking */
-       /* make sure the state is at 0 */
-#ifdef TODO_MSD
-       l_is_valid &= (p_j2k->m_specific_param.m_decoder.m_state == J2K_DEC_STATE_NONE);
-#endif
-       l_is_valid &= (p_j2k->m_specific_param.m_decoder.m_state == 0x0000);
+       cstr_index->maxmarknum = 100;
+       cstr_index->marknum = 0;
+       cstr_index->marker = (opj_marker_info_t*)
+                       opj_calloc(cstr_index->maxmarknum, sizeof(opj_marker_info_t));
+       if (!cstr_index-> marker)
+               return NULL;
 
-       /* POINTER validation */
-       /* make sure a p_j2k codec is present */
-       /* make sure a procedure list is present */
-       l_is_valid &= (p_j2k->m_procedure_list != 00);
-       /* make sure a validation list is present */
-       l_is_valid &= (p_j2k->m_validation_list != 00);
+       cstr_index->tile_index = NULL;
 
-       /* PARAMETER VALIDATION */
-       return l_is_valid;
+       return cstr_index;
 }
 
-opj_bool j2k_read_header_procedure(    opj_j2k_v2_t *p_j2k,
-                                                                       struct opj_stream_private *p_stream,
-                                                                       struct opj_event_mgr * p_manager)
+/**
+ * Reads a SPCod or SPCoc element, i.e. the coding style of a given component of a tile.
+ * @param      p_header_data   the data contained in the COM box.
+ * @param      p_j2k                   the jpeg2000 codec.
+ * @param      p_header_size   the size of the data contained in the COM marker.
+ * @param      p_manager               the user event manager.
+*/
+opj_bool j2k_read_SPCod_SPCoc(
+                                                   opj_j2k_v2_t *p_j2k,
+                                                       OPJ_UINT32 compno,
+                                                       OPJ_BYTE * p_header_data,
+                                                       OPJ_UINT32 * p_header_size,
+                                                       struct opj_event_mgr * p_manager
+                                                       )
 {
-       OPJ_UINT32 l_current_marker;
-       OPJ_UINT32 l_marker_size;
-       const opj_dec_memory_marker_handler_t * l_marker_handler = 00;
+       OPJ_UINT32 i, l_tmp;
+       opj_cp_v2_t *l_cp = NULL;
+       opj_tcp_v2_t *l_tcp = NULL;
+       opj_tccp_t *l_tccp = NULL;
+       OPJ_BYTE * l_current_ptr = NULL;
 
-       // preconditions
-       assert(p_stream != 00);
+       /* preconditions */
        assert(p_j2k != 00);
        assert(p_manager != 00);
+       assert(p_header_data != 00);
 
-       p_j2k->m_specific_param.m_decoder.m_state = J2K_STATE_MHSOC; // The codestream must begin with SOC marker FIXME J2K_DEC_STATE_MHSOC
-
-       // Try to read the SOC marker
-       if (! j2k_read_soc_v2(p_j2k,p_stream,p_manager)) {
-               opj_event_msg_v2(p_manager, EVT_ERROR, "Expected a SOC marker \n");
-               return OPJ_FALSE;
-       }
-
-       // Try to read 2 bytes (the next marker ID) from stream and copy them into the buffer
-       if (opj_stream_read_data(p_stream,p_j2k->m_specific_param.m_decoder.m_header_data,2,p_manager) != 2) {
-               opj_event_msg_v2(p_manager, EVT_ERROR, "Stream too short\n");
-               return OPJ_FALSE;
-       }
-
-       // Read 2 bytes as the new marker ID
-       opj_read_bytes(p_j2k->m_specific_param.m_decoder.m_header_data,&l_current_marker,2);
+       l_cp = &(p_j2k->m_cp);
+       l_tcp = (p_j2k->m_specific_param.m_decoder.m_state == J2K_STATE_TPH) ?
+                               &l_cp->tcps[p_j2k->m_current_tile_number] :
+                               p_j2k->m_specific_param.m_decoder.m_default_tcp;
 
-       /* Try to read until the SOT is detected */
-       while (l_current_marker != J2K_MS_SOT) {
+       /* precondition again */
+       assert(compno < p_j2k->m_private_image->numcomps);
 
-               /* Check if the current marker ID is valid */
-               if (l_current_marker < 0xff00) {
-                       opj_event_msg_v2(p_manager, EVT_ERROR, "We expected read a marker ID (0xff--) instead of %.8x\n", l_current_marker);
-                       return OPJ_FALSE;
-               }
+       l_tccp = &l_tcp->tccps[compno];
+       l_current_ptr = p_header_data;
 
-               // Get the marker handler from the marker ID
-               l_marker_handler = j2k_get_marker_handler(l_current_marker);
+       /* make sure room is sufficient */
+       if (*p_header_size < 5) {
+               opj_event_msg_v2(p_manager, EVT_ERROR, "Error reading SPCod SPCoc element\n");
+               return OPJ_FALSE;
+       }
 
-               // Check if the marker is known and if it is the right place to find it
-               if (! (p_j2k->m_specific_param.m_decoder.m_state & l_marker_handler->states) ) {
-                       opj_event_msg_v2(p_manager, EVT_ERROR, "Marker is not compliant with its position\n");
-                       return OPJ_FALSE;
-               }
+       opj_read_bytes(l_current_ptr, &l_tccp->numresolutions ,1);              /* SPcox (D) */
+       ++l_tccp->numresolutions;                                                                               /* tccp->numresolutions = read() + 1 */
+       ++l_current_ptr;
 
-               // Manage case where marker is unknown
-               if (l_marker_handler->id == J2K_MS_UNK) {
+       /* If user wants to remove more resolutions than the codestream contains, return error */
+       if (l_cp->m_specific_param.m_dec.m_reduce >= l_tccp->numresolutions) {
+               opj_event_msg_v2(p_manager, EVT_ERROR, "Error decoding component %d.\nThe number of resolutions to remove is higher than the number "
+                                       "of resolutions of this component\nModify the cp_reduce parameter.\n\n", compno);
+               p_j2k->m_specific_param.m_decoder.m_state |= 0x8000;// FIXME J2K_DEC_STATE_ERR;
+               return OPJ_FALSE;
+       }
 
-                       opj_event_msg_v2(p_manager, EVT_WARNING, "Unknown marker\n");
+       opj_read_bytes(l_current_ptr,&l_tccp->cblkw ,1);                /* SPcoc (E) */
+       ++l_current_ptr;
+       l_tccp->cblkw += 2;
 
-                       // Try to detect the next valid marker
-                       while(1) {
-                               // Try to read 2 bytes (the next marker ID) from stream and copy them into the buffer
-                               if (opj_stream_read_data(p_stream,p_j2k->m_specific_param.m_decoder.m_header_data,2,p_manager) != 2) {
-                                       opj_event_msg_v2(p_manager, EVT_ERROR, "Stream too short\n");
-                                       return OPJ_FALSE;
-                               }
+       opj_read_bytes(l_current_ptr,&l_tccp->cblkh ,1);                /* SPcoc (F) */
+       ++l_current_ptr;
+       l_tccp->cblkh += 2;
 
-                               // Read 2 bytes as the new marker ID
-                               opj_read_bytes(p_j2k->m_specific_param.m_decoder.m_header_data,&l_current_marker,2);
+       opj_read_bytes(l_current_ptr,&l_tccp->cblksty ,1);              /* SPcoc (G) */
+       ++l_current_ptr;
 
-                               // Check if the current marker ID is valid
-                               if ( !(l_current_marker < 0xff00) ) {
-                                       // Get the marker handler from the marker ID
-                                       l_marker_handler = j2k_get_marker_handler(l_current_marker);
+       opj_read_bytes(l_current_ptr,&l_tccp->qmfbid ,1);               /* SPcoc (H) */
+       ++l_current_ptr;
 
-                                       if ( !(p_j2k->m_specific_param.m_decoder.m_state & l_marker_handler->states) ) {
-                                               opj_event_msg_v2(p_manager, EVT_ERROR, "Marker is not compliant with its position\n");
-                                               return OPJ_FALSE;
-                                       }
-                                       else{
-                                               if (l_marker_handler->id != J2K_MS_UNK)
-                                                       break; // next marker is known and well located
-                                       }
-                               }
-                       }
-                       if (l_current_marker == J2K_MS_SOT)
-                               break; // SOT marker is detected main header is completely read.
-               }
+       *p_header_size = *p_header_size - 5;
 
-               // Try to read 2 bytes (the marker size) from stream and copy them into the buffer
-               if (opj_stream_read_data(p_stream,p_j2k->m_specific_param.m_decoder.m_header_data,2,p_manager) != 2) {
-                       opj_event_msg_v2(p_manager, EVT_ERROR, "Stream too short\n");
+       /* use custom precinct size ? */
+       if (l_tccp->csty & J2K_CCP_CSTY_PRT) {
+               if (*p_header_size < l_tccp->numresolutions) {
+                       opj_event_msg_v2(p_manager, EVT_ERROR, "Error reading SPCod SPCoc element\n");
                        return OPJ_FALSE;
                }
 
-               // read 2 bytes as the marker size
-               opj_read_bytes(p_j2k->m_specific_param.m_decoder.m_header_data,&l_marker_size,2);
-               l_marker_size -= 2; // Subtract the size of the marker ID already read
-
-               // Check if the marker size is compatible with the header data size
-               if (l_marker_size > p_j2k->m_specific_param.m_decoder.m_header_data_size) {
-                       p_j2k->m_specific_param.m_decoder.m_header_data = (OPJ_BYTE*)
-                                       opj_realloc(p_j2k->m_specific_param.m_decoder.m_header_data,l_marker_size);
-                       if (p_j2k->m_specific_param.m_decoder.m_header_data == 00) {
-                               return OPJ_FALSE;
-                       }
-                       p_j2k->m_specific_param.m_decoder.m_header_data_size = l_marker_size;
+               for     (i = 0; i < l_tccp->numresolutions; ++i) {
+                       opj_read_bytes(l_current_ptr,&l_tmp ,1);                /* SPcoc (I_i) */
+                       ++l_current_ptr;
+                       l_tccp->prcw[i] = l_tmp & 0xf;
+                       l_tccp->prch[i] = l_tmp >> 4;
                }
 
-               // Try to read the rest of the marker segment from stream and copy them into the buffer
-               if (opj_stream_read_data(p_stream,p_j2k->m_specific_param.m_decoder.m_header_data,l_marker_size,p_manager) != l_marker_size) {
-                       opj_event_msg_v2(p_manager, EVT_ERROR, "Stream too short\n");
-                       return OPJ_FALSE;
+               *p_header_size = *p_header_size - l_tccp->numresolutions;
+       }
+       else {
+               /* set default size for the precinct width and height */
+               for     (i = 0; i < l_tccp->numresolutions; ++i) {
+                       l_tccp->prcw[i] = 15;
+                       l_tccp->prch[i] = 15;
                }
+       }
 
-               // Read the marker segment with the correct marker handler
-               if (! (*(l_marker_handler->handler))(p_j2k,p_j2k->m_specific_param.m_decoder.m_header_data,l_marker_size,p_manager)) {
-                       opj_event_msg_v2(p_manager, EVT_ERROR, "Marker handler function failed to read the marker segment\n");
-                       return OPJ_FALSE;
-               }
+#ifdef WIP_REMOVE_MSD
+       /* INDEX >> */
+       if (p_j2k->cstr_info && compno == 0) {
+               OPJ_UINT32 l_data_size = l_tccp->numresolutions * sizeof(OPJ_UINT32);
 
-               // Try to read 2 bytes (the next marker ID) from stream and copy them into the buffer
-               if (opj_stream_read_data(p_stream,p_j2k->m_specific_param.m_decoder.m_header_data,2,p_manager) != 2) {
-                       opj_event_msg_v2(p_manager, EVT_ERROR, "Stream too short\n");
-                       return OPJ_FALSE;
-               }
+               p_j2k->cstr_info->tile[p_j2k->m_current_tile_number].tccp_info[compno].cblkh = l_tccp->cblkh;
+               p_j2k->cstr_info->tile[p_j2k->m_current_tile_number].tccp_info[compno].cblkw = l_tccp->cblkw;
+               p_j2k->cstr_info->tile[p_j2k->m_current_tile_number].tccp_info[compno].numresolutions = l_tccp->numresolutions;
+               p_j2k->cstr_info->tile[p_j2k->m_current_tile_number].tccp_info[compno].cblksty = l_tccp->cblksty;
+               p_j2k->cstr_info->tile[p_j2k->m_current_tile_number].tccp_info[compno].qmfbid = l_tccp->qmfbid;
 
-               // read 2 bytes as the new marker ID
-               opj_read_bytes(p_j2k->m_specific_param.m_decoder.m_header_data,&l_current_marker,2);
+
+               memcpy(p_j2k->cstr_info->tile[p_j2k->m_current_tile_number].pdx,l_tccp->prcw, l_data_size);
+               memcpy(p_j2k->cstr_info->tile[p_j2k->m_current_tile_number].pdy,l_tccp->prch, l_data_size);
        }
+       /* << INDEX */
+#endif
 
-       p_j2k->m_specific_param.m_decoder.m_state = J2K_STATE_TPHSOT; // FIXME J2K_DEC_STATE_TPHSOT
        return OPJ_TRUE;
 }
 
 /**
- * Excutes the given procedures on the given codec.
- *
- * @param      p_procedure_list        the list of procedures to execute
- * @param      p_j2k                                   the jpeg2000 codec to execute the procedures on.
- * @param      p_stream                                        the stream to execute the procedures on.
- * @param      p_manager                       the user manager.
+ * Copies the tile component parameters of all the component from the first tile component.
  *
- * @return     true                            if all the procedures were successfully executed.
+ * @param              p_j2k           the J2k codec.
  */
-opj_bool j2k_exec (
-                                       opj_j2k_v2_t * p_j2k,
-                                       opj_procedure_list_t * p_procedure_list,
-                                       opj_stream_private_t *p_stream,
-                                       opj_event_mgr_t * p_manager
-                                 )
-{
-       opj_bool (** l_procedure) (opj_j2k_v2_t * ,opj_stream_private_t *,opj_event_mgr_t *) = 00;
-       opj_bool l_result = OPJ_TRUE;
-       OPJ_UINT32 l_nb_proc, i;
-
-       // preconditions
-       assert(p_procedure_list != 00);
-       assert(p_j2k != 00);
-       assert(p_stream != 00);
-       assert(p_manager != 00);
-
-
-       l_nb_proc = opj_procedure_list_get_nb_procedures(p_procedure_list);
-       l_procedure = (opj_bool (**) (opj_j2k_v2_t * ,opj_stream_private_t *,opj_event_mgr_t *)) opj_procedure_list_get_first_procedure(p_procedure_list);
-
-       for     (i=0;i<l_nb_proc;++i) {
-               l_result = l_result && ((*l_procedure) (p_j2k,p_stream,p_manager));
-               ++l_procedure;
-       }
-
-       // and clear the procedure list at the end.
-       opj_procedure_list_clear(p_procedure_list);
-       return l_result;
-}
-
-
-opj_bool j2k_copy_default_tcp_and_create_tcd
-                                               (
-                                               opj_j2k_v2_t * p_j2k,
-                                               opj_stream_private_t *p_stream,
-                                               opj_event_mgr_t * p_manager
-                                               )
+void j2k_copy_tile_component_parameters( opj_j2k_v2_t *p_j2k )
 {
-       opj_tcp_v2_t * l_tcp = 00;
-       opj_tcp_v2_t * l_default_tcp = 00;
-       OPJ_UINT32 l_nb_tiles;
-       OPJ_UINT32 i,j;
-       opj_tccp_t *l_current_tccp = 00;
-       OPJ_UINT32 l_tccp_size;
-       OPJ_UINT32 l_mct_size;
-       opj_image_header_t * l_image;
-       OPJ_UINT32 l_mcc_records_size,l_mct_records_size;
-       opj_mct_data_t * l_src_mct_rec, *l_dest_mct_rec;
-       opj_simple_mcc_decorrelation_data_t * l_src_mcc_rec, *l_dest_mcc_rec;
-       OPJ_UINT32 l_offset;
-
-       // preconditions in debug
-       assert(p_j2k != 00);
-       assert(p_stream != 00);
-       assert(p_manager != 00);
-
-
-       l_image = p_j2k->m_image_header;
-       l_nb_tiles = p_j2k->m_cp.th * p_j2k->m_cp.tw;
-       l_tcp = p_j2k->m_cp.tcps;
-       l_tccp_size = l_image->numcomps * sizeof(opj_tccp_t);
-       l_default_tcp = p_j2k->m_specific_param.m_decoder.m_default_tcp;
-       l_mct_size = l_image->numcomps * l_image->numcomps * sizeof(OPJ_FLOAT32);
-       for
-               (i=0;i<l_nb_tiles;++i)
-       {
-               l_current_tccp = l_tcp->tccps;
-               memcpy(l_tcp,l_default_tcp, sizeof(opj_tcp_v2_t));
-               l_tcp->ppt = 0;
-               l_tcp->ppt_data = 00;
-               l_tcp->tccps = l_current_tccp;
-               if
-                       (l_default_tcp->m_mct_decoding_matrix)
-               {
-                       l_tcp->m_mct_decoding_matrix = (OPJ_FLOAT32*)opj_malloc(l_mct_size);
-                       if
-                               (! l_tcp->m_mct_decoding_matrix )
-                       {
-                               return OPJ_FALSE;
-                       }
-                       memcpy(l_tcp->m_mct_decoding_matrix,l_default_tcp->m_mct_decoding_matrix,l_mct_size);
-               }
-               l_mct_records_size = l_default_tcp->m_nb_max_mct_records * sizeof(opj_mct_data_t);
-               l_tcp->m_mct_records = (opj_mct_data_t*)opj_malloc(l_mct_records_size);
-               if
-                       (! l_tcp->m_mct_records)
-               {
-                       return OPJ_FALSE;
-               }
-               memcpy(l_tcp->m_mct_records, l_default_tcp->m_mct_records,l_mct_records_size);
-               l_src_mct_rec = l_default_tcp->m_mct_records;
-               l_dest_mct_rec = l_tcp->m_mct_records;
-               for
-                       (j=0;j<l_default_tcp->m_nb_mct_records;++j)
-               {
-                       if
-                               (l_src_mct_rec->m_data)
-                       {
-                               l_dest_mct_rec->m_data = (OPJ_BYTE*)
-                               opj_malloc(l_src_mct_rec->m_data_size);
-                               if
-                                       (! l_dest_mct_rec->m_data)
-                               {
-                                       return OPJ_FALSE;
-                               }
-                               memcpy(l_dest_mct_rec->m_data,l_src_mct_rec->m_data,l_src_mct_rec->m_data_size);
-                       }
-                       ++l_src_mct_rec;
-                       ++l_dest_mct_rec;
-               }
-               l_mcc_records_size = l_default_tcp->m_nb_max_mcc_records * sizeof(opj_simple_mcc_decorrelation_data_t);
-               l_tcp->m_mcc_records = (opj_simple_mcc_decorrelation_data_t*)
-               opj_malloc(l_mcc_records_size);
-               if
-                       (! l_tcp->m_mcc_records)
-               {
-                       return OPJ_FALSE;
-               }
-               memcpy(l_tcp->m_mcc_records,l_default_tcp->m_mcc_records,l_mcc_records_size);
-               l_src_mcc_rec = l_default_tcp->m_mcc_records;
-               l_dest_mcc_rec = l_tcp->m_mcc_records;
-               for
-                       (j=0;j<l_default_tcp->m_nb_max_mcc_records;++j)
-               {
-                       if
-                               (l_src_mcc_rec->m_decorrelation_array)
-                       {
-                               l_offset = l_src_mcc_rec->m_decorrelation_array - l_default_tcp->m_mct_records;
-                               l_dest_mcc_rec->m_decorrelation_array = l_tcp->m_mct_records + l_offset;
-                       }
-                       if
-                               (l_src_mcc_rec->m_offset_array)
-                       {
-                               l_offset = l_src_mcc_rec->m_offset_array - l_default_tcp->m_mct_records;
-                               l_dest_mcc_rec->m_offset_array = l_tcp->m_mct_records + l_offset;
-                       }
-                       ++l_src_mcc_rec;
-                       ++l_dest_mcc_rec;
-               }
-               memcpy(l_current_tccp,l_default_tcp->tccps,l_tccp_size);
-               ++l_tcp;
-       }
-       p_j2k->m_tcd = (opj_tcd_v2_t*)tcd_create_v2(OPJ_TRUE); // FIXME why a cast ?
-       if
-               (! p_j2k->m_tcd )
-       {
-               return OPJ_FALSE;
-       }
-       if
-               (! tcd_init_v2(p_j2k->m_tcd, l_image, &(p_j2k->m_cp)))
-       {
-               tcd_destroy_v2(p_j2k->m_tcd);
-               p_j2k->m_tcd = 00;
-               opj_event_msg_v2(p_manager, EVT_ERROR, "Cannot decode tile, memory error\n");
-               return OPJ_FALSE;
+       // loop
+       OPJ_UINT32 i;
+       opj_cp_v2_t *l_cp = NULL;
+       opj_tcp_v2_t *l_tcp = NULL;
+       opj_tccp_t *l_ref_tccp = NULL, *l_copied_tccp = NULL;
+       OPJ_UINT32 l_prc_size;
+
+       /* preconditions */
+       assert(p_j2k != 00);
+
+       l_cp = &(p_j2k->m_cp);
+       l_tcp = (p_j2k->m_specific_param.m_decoder.m_state == J2K_STATE_TPH) ? /* FIXME J2K_DEC_STATE_TPH*/
+                               &l_cp->tcps[p_j2k->m_current_tile_number] :
+                               p_j2k->m_specific_param.m_decoder.m_default_tcp;
+
+       l_ref_tccp = &l_tcp->tccps[0];
+       l_copied_tccp = l_ref_tccp + 1;
+       l_prc_size = l_ref_tccp->numresolutions * sizeof(OPJ_UINT32);
+
+       for     (i=1; i<p_j2k->m_private_image->numcomps; ++i) {
+               l_copied_tccp->numresolutions = l_ref_tccp->numresolutions;
+               l_copied_tccp->cblkw = l_ref_tccp->cblkw;
+               l_copied_tccp->cblkh = l_ref_tccp->cblkh;
+               l_copied_tccp->cblksty = l_ref_tccp->cblksty;
+               l_copied_tccp->qmfbid = l_ref_tccp->qmfbid;
+               memcpy(l_copied_tccp->prcw,l_ref_tccp->prcw,l_prc_size);
+               memcpy(l_copied_tccp->prch,l_ref_tccp->prch,l_prc_size);
+               ++l_copied_tccp;
        }
-       return OPJ_TRUE;
 }
 
 /**
- * Reads the lookup table containing all the marker, status and action, and returns the handler associated
- * with the marker value.
- * @param      p_id            Marker value to look up
+ * Reads a SQcd or SQcc element, i.e. the quantization values of a band.
  *
- * @return     the handler associated with the id.
+ * @param      p_comp_no               the component being targeted.
+ * @param      p_header_data   the data contained in the COM box.
+ * @param      p_j2k                   the jpeg2000 codec.
+ * @param      p_header_size   the size of the data contained in the COM marker.
+ * @param      p_manager               the user event manager.
 */
-const opj_dec_memory_marker_handler_t * j2k_get_marker_handler (const OPJ_UINT32 p_id)
+opj_bool j2k_read_SQcd_SQcc(
+                                                       opj_j2k_v2_t *p_j2k,
+                                                       OPJ_UINT32 p_comp_no,
+                                                       OPJ_BYTE* p_header_data,
+                                                       OPJ_UINT32 * p_header_size,
+                                                       struct opj_event_mgr * p_manager
+                                                       )
 {
-       const opj_dec_memory_marker_handler_t *e;
-       for (e = j2k_memory_marker_handler_tab; e->id != 0; ++e) {
-               if (e->id == p_id) {
-                       break; // we find a handler corresponding to the marker ID
-               }
-       }
-       return e;
-}
+       // loop
+       OPJ_UINT32 l_band_no;
+       opj_cp_v2_t *l_cp = 00;
+       opj_tcp_v2_t *l_tcp = 00;
+       opj_tccp_t *l_tccp = 00;
+       OPJ_BYTE * l_current_ptr = 00;
+       OPJ_UINT32 l_tmp, l_num_band;
 
+       // preconditions
+       assert(p_j2k != 00);
+       assert(p_manager != 00);
+       assert(p_header_data != 00);
 
-/**
- * Destroys a jpeg2000 codec.
- *
- * @param      p_j2k   the jpeg20000 structure to destroy.
- */
-void j2k_destroy (opj_j2k_v2_t *p_j2k)
-{
-       if
-               (p_j2k == 00)
-       {
-               return;
+       l_cp = &(p_j2k->m_cp);
+       // come from tile part header or main header ?
+       l_tcp = (p_j2k->m_specific_param.m_decoder.m_state == J2K_STATE_TPH) ? /*FIXME J2K_DEC_STATE_TPH*/
+                               &l_cp->tcps[p_j2k->m_current_tile_number] :
+                               p_j2k->m_specific_param.m_decoder.m_default_tcp;
+
+       // precondition again
+       assert(p_comp_no <  p_j2k->m_private_image->numcomps);
+
+       l_tccp = &l_tcp->tccps[p_comp_no];
+       l_current_ptr = p_header_data;
+
+       if (*p_header_size < 1) {
+               opj_event_msg_v2(p_manager, EVT_ERROR, "Error reading SQcd or SQcc element\n");
+               return OPJ_FALSE;
        }
+       *p_header_size -= 1;
 
-       if
-               (p_j2k->m_is_decoder)
-       {
-               if
-                       (p_j2k->m_specific_param.m_decoder.m_default_tcp != 00)
-               {
-                       j2k_tcp_destroy(p_j2k->m_specific_param.m_decoder.m_default_tcp);
-                       opj_free(p_j2k->m_specific_param.m_decoder.m_default_tcp);
-                       p_j2k->m_specific_param.m_decoder.m_default_tcp = 00;
-               }
-               if
-                       (p_j2k->m_specific_param.m_decoder.m_header_data != 00)
-               {
-                       opj_free(p_j2k->m_specific_param.m_decoder.m_header_data);
-                       p_j2k->m_specific_param.m_decoder.m_header_data = 00;
-                       p_j2k->m_specific_param.m_decoder.m_header_data_size = 0;
-               }
+       opj_read_bytes(l_current_ptr, &l_tmp ,1);                       /* Sqcx */
+       ++l_current_ptr;
 
+       l_tccp->qntsty = l_tmp & 0x1f;
+       l_tccp->numgbits = l_tmp >> 5;
+       if (l_tccp->qntsty == J2K_CCP_QNTSTY_SIQNT) {
+        l_num_band = 1;
        }
-       else
-       {
-               if
-                       (p_j2k->m_specific_param.m_encoder.m_encoded_tile_data)
-               {
-                       opj_free(p_j2k->m_specific_param.m_encoder.m_encoded_tile_data);
-                       p_j2k->m_specific_param.m_encoder.m_encoded_tile_data = 00;
-               }
-               if
-                       (p_j2k->m_specific_param.m_encoder.m_tlm_sot_offsets_buffer)
-               {
-                       opj_free(p_j2k->m_specific_param.m_encoder.m_tlm_sot_offsets_buffer);
-                       p_j2k->m_specific_param.m_encoder.m_tlm_sot_offsets_buffer = 00;
-                       p_j2k->m_specific_param.m_encoder.m_tlm_sot_offsets_current = 00;
-               }
-               if
-                       (p_j2k->m_specific_param.m_encoder.m_header_tile_data)
-               {
-                       opj_free(p_j2k->m_specific_param.m_encoder.m_header_tile_data);
-                       p_j2k->m_specific_param.m_encoder.m_header_tile_data = 00;
-                       p_j2k->m_specific_param.m_encoder.m_header_tile_data_size = 0;
+       else {
+               l_num_band = (l_tccp->qntsty == J2K_CCP_QNTSTY_NOQNT) ?
+                       (*p_header_size) :
+                       (*p_header_size) / 2;
+
+               if( l_num_band > J2K_MAXBANDS ) {
+                       opj_event_msg_v2(p_manager, EVT_WARNING, "While reading CCP_QNTSTY element inside QCD or QCC marker segment, "
+                               "number of subbands (%d) is greater to J2K_MAXBANDS (%d). So we limiting the number of elements stored to "
+                               "J2K_MAXBANDS (%d) and skip the other. \n", l_num_band, J2K_MAXBANDS, J2K_MAXBANDS);
+                       //return OPJ_FALSE;
                }
        }
-       tcd_destroy_v2(p_j2k->m_tcd);
 
-       j2k_cp_destroy(&(p_j2k->m_cp));
-       memset(&(p_j2k->m_cp),0,sizeof(opj_cp_t));
+#ifdef USE_JPWL
+       if (l_cp->correct) {
 
-       opj_procedure_list_destroy(p_j2k->m_procedure_list);
-       p_j2k->m_procedure_list = 00;
+               /* if JPWL is on, we check whether there are too many subbands */
+               if ((l_num_band < 0) || (l_num_band >= J2K_MAXBANDS)) {
+                       opj_event_msg_v2(p_manager, JPWL_ASSUME ? EVT_WARNING : EVT_ERROR,
+                               "JPWL: bad number of subbands in Sqcx (%d)\n",
+                               l_num_band);
+                       if (!JPWL_ASSUME) {
+                               opj_event_msg_v2(p_manager, EVT_ERROR, "JPWL: giving up\n");
+                               return OPJ_FALSE;
+                       }
+                       /* we try to correct */
+                       l_num_band = 1;
+                       opj_event_msg_v2(p_manager, EVT_WARNING, "- trying to adjust them\n"
+                               "- setting number of bands to %d => HYPOTHESIS!!!\n",
+                               l_num_band);
+               };
 
-       opj_procedure_list_destroy(p_j2k->m_validation_list);
-       p_j2k->m_procedure_list = 00;
+       };
+#endif /* USE_JPWL */
 
-       opj_free(p_j2k);
-}
+       if (l_tccp->qntsty == J2K_CCP_QNTSTY_NOQNT) {
+               for     (l_band_no = 0; l_band_no < l_num_band; l_band_no++) {
+                       opj_read_bytes(l_current_ptr, &l_tmp ,1);                       /* SPqcx_i */
+                       ++l_current_ptr;
+                       if (l_band_no < J2K_MAXBANDS){
+                               l_tccp->stepsizes[l_band_no].expn = l_tmp>>3;
+                               l_tccp->stepsizes[l_band_no].mant = 0;
+                       }
+               }
+               *p_header_size = *p_header_size - l_num_band;
+       }
+       else {
+               for     (l_band_no = 0; l_band_no < l_num_band; l_band_no++) {
+                       opj_read_bytes(l_current_ptr, &l_tmp ,2);                       /* SPqcx_i */
+                       l_current_ptr+=2;
+                       if (l_band_no < J2K_MAXBANDS){
+                               l_tccp->stepsizes[l_band_no].expn = l_tmp >> 11;
+                               l_tccp->stepsizes[l_band_no].mant = l_tmp & 0x7ff;
+                       }
+               }
+               *p_header_size = *p_header_size - 2*l_num_band;
+       }
 
+       /* Add Antonin : if scalar_derived -> compute other stepsizes */
+       if (l_tccp->qntsty == J2K_CCP_QNTSTY_SIQNT) {
+               for (l_band_no = 1; l_band_no < J2K_MAXBANDS; l_band_no++) {
+                       l_tccp->stepsizes[l_band_no].expn =
+                               ((l_tccp->stepsizes[0].expn) - ((l_band_no - 1) / 3) > 0) ?
+                                       (l_tccp->stepsizes[0].expn) - ((l_band_no - 1) / 3) : 0;
+                       l_tccp->stepsizes[l_band_no].mant = l_tccp->stepsizes[0].mant;
+               }
+       }
 
+       return OPJ_TRUE;
+}
 
 /**
- * Destroys a tile coding parameter structure.
+ * Copies the tile component parameters of all the component from the first tile component.
  *
- * @param      p_tcp           the tile coding parameter to destroy.
+ * @param              p_j2k           the J2k codec.
  */
-void j2k_tcp_destroy (opj_tcp_v2_t *p_tcp)
+void j2k_copy_tile_quantization_parameters( opj_j2k_v2_t *p_j2k )
 {
-       if
-               (p_tcp == 00)
-       {
-               return;
-       }
-       if
-               (p_tcp->ppt_buffer != 00)
-       {
-               opj_free(p_tcp->ppt_buffer);
-               p_tcp->ppt_buffer = 00;
-       }
-       if
-               (p_tcp->tccps != 00)
-       {
-               opj_free(p_tcp->tccps);
-               p_tcp->tccps = 00;
-       }
-       if
-               (p_tcp->m_mct_coding_matrix != 00)
-       {
-               opj_free(p_tcp->m_mct_coding_matrix);
-               p_tcp->m_mct_coding_matrix = 00;
-       }
-       if
-               (p_tcp->m_mct_decoding_matrix != 00)
-       {
-               opj_free(p_tcp->m_mct_decoding_matrix);
-               p_tcp->m_mct_decoding_matrix = 00;
-       }
-       if
-               (p_tcp->m_mcc_records)
-       {
-               opj_free(p_tcp->m_mcc_records);
-               p_tcp->m_mcc_records = 00;
-               p_tcp->m_nb_max_mcc_records = 0;
-               p_tcp->m_nb_mcc_records = 0;
-       }
-       if
-               (p_tcp->m_mct_records)
-       {
-               opj_mct_data_t * l_mct_data = p_tcp->m_mct_records;
-               OPJ_UINT32 i;
-               for
-                       (i=0;i<p_tcp->m_nb_mct_records;++i)
-               {
-                       if
-                               (l_mct_data->m_data)
-                       {
-                               opj_free(l_mct_data->m_data);
-                               l_mct_data->m_data = 00;
-                       }
-                       ++l_mct_data;
-               }
-               opj_free(p_tcp->m_mct_records);
-               p_tcp->m_mct_records = 00;
-       }
+       OPJ_UINT32 i;
+       opj_cp_v2_t *l_cp = NULL;
+       opj_tcp_v2_t *l_tcp = NULL;
+       opj_tccp_t *l_ref_tccp = NULL;
+       opj_tccp_t *l_copied_tccp = NULL;
+       OPJ_UINT32 l_size;
+
+       /* preconditions */
+       assert(p_j2k != 00);
+
+       l_cp = &(p_j2k->m_cp);
+       l_tcp = p_j2k->m_specific_param.m_decoder.m_state == J2K_STATE_TPH ?
+                       &l_cp->tcps[p_j2k->m_current_tile_number] :
+                       p_j2k->m_specific_param.m_decoder.m_default_tcp;
+
+       l_ref_tccp = &l_tcp->tccps[0];
+       l_copied_tccp = l_ref_tccp + 1;
+       l_size = J2K_MAXBANDS * sizeof(opj_stepsize_t);
 
-       if
-               (p_tcp->mct_norms != 00)
-       {
-               opj_free(p_tcp->mct_norms);
-               p_tcp->mct_norms = 00;
-       }
-       if
-               (p_tcp->m_data)
-       {
-               opj_free(p_tcp->m_data);
-               p_tcp->m_data = 00;
+       for     (i=1;i<p_j2k->m_private_image->numcomps;++i) {
+               l_copied_tccp->qntsty = l_ref_tccp->qntsty;
+               l_copied_tccp->numgbits = l_ref_tccp->numgbits;
+               memcpy(l_copied_tccp->stepsizes,l_ref_tccp->stepsizes,l_size);
+               ++l_copied_tccp;
        }
 }
 
-
 /**
- * Destroys a coding parameter structure.
+ * Dump some elements from the J2K decompression structure .
  *
- * @param      p_cp            the coding parameter to destroy.
- */
-void j2k_cp_destroy (opj_cp_v2_t *p_cp)
+ *@param p_j2k                         the jpeg2000 codec.
+ *@param flag                          flag to describe what elments are dump.
+ *@param out_stream                    output stream where dump the elements.
+ *
+*/
+void j2k_dump (opj_j2k_v2_t* p_j2k, OPJ_INT32 flag, FILE* out_stream)
 {
-       OPJ_UINT32 l_nb_tiles;
-       opj_tcp_v2_t * l_current_tile = 00;
-       OPJ_UINT32 i;
-
-       if
-               (p_cp == 00)
-       {
+       /* Check if the flag is compatible with j2k file*/
+       if ( (flag & OPJ_JP2_INFO) || (flag & OPJ_JP2_IND)){
+               fprintf(out_stream, "Wrong flag\n");
                return;
        }
-       if
-               (p_cp->tcps != 00)
-       {
-               l_current_tile = p_cp->tcps;
-               l_nb_tiles = p_cp->th * p_cp->tw;
 
-               for
-                       (i = 0; i < l_nb_tiles; ++i)
-               {
-                       j2k_tcp_destroy(l_current_tile);
-                       ++l_current_tile;
-               }
-               opj_free(p_cp->tcps);
-               p_cp->tcps = 00;
+       /* Dump the image_header */
+       if (flag & OPJ_IMG_INFO){
+               if (p_j2k->m_private_image)
+                       j2k_dump_image_header(p_j2k->m_private_image, 0, out_stream);
        }
-       if
-               (p_cp->ppm_buffer != 00)
-       {
-               opj_free(p_cp->ppm_buffer);
-               p_cp->ppm_buffer = 00;
+
+       /* Dump the codestream info from main header */
+       if (flag & OPJ_J2K_MH_INFO){
+               j2k_dump_MH_info(p_j2k, out_stream);
        }
-       if
-               (p_cp->comment != 00)
-       {
-               opj_free(p_cp->comment);
-               p_cp->comment = 00;
+
+
+       /* Dump the codestream info of the current tile */
+       if (flag & OPJ_J2K_TH_INFO){
+
        }
-       if
-               (! p_cp->m_is_decoder)
-       {
-               if
-                       (p_cp->m_specific_param.m_enc.m_matrice)
-               {
-                       opj_free(p_cp->m_specific_param.m_enc.m_matrice);
-                       p_cp->m_specific_param.m_enc.m_matrice = 00;
-               }
+
+       /* Dump the codestream index from main header */
+       if (flag & OPJ_J2K_MH_IND){
+               j2k_dump_MH_index(p_j2k, out_stream);
        }
-}
 
+       /* Dump the codestream index of the current tile */
+       if (flag & OPJ_J2K_TH_IND){
 
+       }
+
+}
 
 /**
- * Reads a tile header.
- * @param      p_j2k           the jpeg2000 codec.
- * @param      p_stream                        the stream to write data to.
- * @param      p_manager       the user event manager.
- */
-opj_bool j2k_read_tile_header( opj_j2k_v2_t * p_j2k,
-                                                               OPJ_UINT32 * p_tile_index,
-                                                               OPJ_UINT32 * p_data_size,
-                                                               OPJ_INT32 * p_tile_x0, OPJ_INT32 * p_tile_y0,
-                                                               OPJ_INT32 * p_tile_x1, OPJ_INT32 * p_tile_y1,
-                                                               OPJ_UINT32 * p_nb_comps,
-                                                               opj_bool * p_go_on,
-                                                               opj_stream_private_t *p_stream,
-                                                               opj_event_mgr_t * p_manager )
+ * Dump index elements of the codestream extract from the main header.
+ *
+ *@param p_j2k                         the jpeg2000 codec.
+ *@param out_stream                    output stream where dump the elements.
+ *
+*/
+void j2k_dump_MH_index(opj_j2k_v2_t* p_j2k, FILE* out_stream)
 {
-       OPJ_UINT32 l_current_marker = J2K_MS_SOT;
-       OPJ_UINT32 l_marker_size;
-       const opj_dec_memory_marker_handler_t * l_marker_handler = 00;
-       opj_tcp_v2_t * l_tcp = NULL;
-       OPJ_UINT32 l_nb_tiles;
+       opj_codestream_index_t* cstr_index = p_j2k->cstr_index;
+       OPJ_UINT32 it_marker, it_tile, it_tile_part;
 
-       /* preconditions */
-       assert(p_stream != 00);
-       assert(p_j2k != 00);
-       assert(p_manager != 00);
+       fprintf(out_stream, "Codestream index from main header: {\n");
 
-       /* Reach the End Of Codestream ?*/
-       if (p_j2k->m_specific_param.m_decoder.m_state == J2K_STATE_EOC){
-               l_current_marker = J2K_MS_EOC;
-       }
-       /* We need to encounter a SOT marker (a new tile-part header) */
-       else if (p_j2k->m_specific_param.m_decoder.m_state != J2K_STATE_TPHSOT){
-               return OPJ_FALSE;
-       }
+       fprintf(out_stream, "\t Main header start position=%" OPJ_OFF_F "d\n"
+                                   "\t Main header end position=%" OPJ_OFF_F "d\n",
+                       cstr_index->main_head_start, cstr_index->main_head_end);
 
-       /* Read into the codestream until reach the EOC or ! can_decode ??? FIXME */
-       while (! p_j2k->m_specific_param.m_decoder.m_can_decode && l_current_marker != J2K_MS_EOC) {
+       fprintf(out_stream, "\t Marker list: {\n");
 
-               /* Try to read until the Start Of Data is detected */
-               while (l_current_marker != J2K_MS_SOD) {
+       if (cstr_index->marker){
+               for (it_marker=0; it_marker < cstr_index->marknum ; it_marker++){
+                       fprintf(out_stream, "\t\t type=%#x, pos=%" OPJ_OFF_F "d, len=%d\n",
+                                       cstr_index->marker[it_marker].type,
+                                       cstr_index->marker[it_marker].pos,
+                                       cstr_index->marker[it_marker].len );
+               }
+       }
 
-                       /* Try to read 2 bytes (the marker size) from stream and copy them into the buffer */
-                       if (opj_stream_read_data(p_stream,p_j2k->m_specific_param.m_decoder.m_header_data,2,p_manager) != 2) {
-                               opj_event_msg_v2(p_manager, EVT_ERROR, "Stream too short\n");
-                               return OPJ_FALSE;
-                       }
+       fprintf(out_stream, "\t }\n");
 
-                       /* Read 2 bytes from the buffer as the marker size */
-                       opj_read_bytes(p_j2k->m_specific_param.m_decoder.m_header_data,&l_marker_size,2);
 
-                       /* Why this condition? FIXME */
-                       if (p_j2k->m_specific_param.m_decoder.m_state & J2K_STATE_TPH){
-                               p_j2k->m_specific_param.m_decoder.m_sot_length -= (l_marker_size + 2);
-                       }
-                       l_marker_size -= 2; /* Subtract the size of the marker ID already read */
+       if (cstr_index->tile_index){
+               fprintf(out_stream, "\t Tile index: {\n");
 
-                       /* Get the marker handler from the marker ID */
-                       l_marker_handler = j2k_get_marker_handler(l_current_marker);
+               for (it_tile=0; it_tile < cstr_index->nb_of_tiles ; it_tile++){
+                       OPJ_UINT32 nb_of_tile_part = cstr_index->tile_index[it_tile].nb_tps;
 
-                       /* Check if the marker is known and if it is the right place to find it */
-                       if (! (p_j2k->m_specific_param.m_decoder.m_state & l_marker_handler->states) ) {
-                               opj_event_msg_v2(p_manager, EVT_ERROR, "Marker is not compliant with its position\n");
-                               return OPJ_FALSE;
-                       }
-/* FIXME manage case of unknown marker as in the main header ? */
+                       fprintf(out_stream, "\t\t nb of tile-part in tile [%d]=%d\n", it_tile, nb_of_tile_part);
 
-                       /* Check if the marker size is compatible with the header data size */
-                       if (l_marker_size > p_j2k->m_specific_param.m_decoder.m_header_data_size) {
-                               p_j2k->m_specific_param.m_decoder.m_header_data = (OPJ_BYTE*)
-                                       opj_realloc(p_j2k->m_specific_param.m_decoder.m_header_data,l_marker_size);
-                               if (p_j2k->m_specific_param.m_decoder.m_header_data == 00) {
-                                       return OPJ_FALSE;
+                       if (cstr_index->tile_index[it_tile].tp_index){
+                               for (it_tile_part =0; it_tile_part < nb_of_tile_part; it_tile_part++){
+                                       fprintf(out_stream, "\t\t\t tile-part[%d]: star_pos=%" OPJ_OFF_F "d, end_header=%" OPJ_OFF_F "d, end_pos=%" OPJ_OFF_F "d.\n",
+                                                       it_tile_part,
+                                                       cstr_index->tile_index[it_tile].tp_index[it_tile_part].start_pos,
+                                                       cstr_index->tile_index[it_tile].tp_index[it_tile_part].end_header,
+                                                       cstr_index->tile_index[it_tile].tp_index[it_tile_part].end_pos);
                                }
-                               p_j2k->m_specific_param.m_decoder.m_header_data_size = l_marker_size;
                        }
 
-                       /* Try to read the rest of the marker segment from stream and copy them into the buffer */
-                       if (opj_stream_read_data(p_stream,p_j2k->m_specific_param.m_decoder.m_header_data,l_marker_size,p_manager) != l_marker_size) {
-                               opj_event_msg_v2(p_manager, EVT_ERROR, "Stream too short\n");
-                               return OPJ_FALSE;
+                       if (cstr_index->tile_index[it_tile].marker){
+                               for (it_marker=0; it_marker < cstr_index->tile_index[it_tile].marknum ; it_marker++){
+                                       fprintf(out_stream, "\t\t type=%#x, pos=%" OPJ_OFF_F "d, len=%d\n",
+                                                       cstr_index->tile_index[it_tile].marker[it_marker].type,
+                                                       cstr_index->tile_index[it_tile].marker[it_marker].pos,
+                                                       cstr_index->tile_index[it_tile].marker[it_marker].len );
+                               }
                        }
+               }
+               fprintf(out_stream,"\t }\n");
+       }
 
-                       /* Read the marker segment with the correct marker handler */
-                       if (! (*(l_marker_handler->handler))(p_j2k,p_j2k->m_specific_param.m_decoder.m_header_data,l_marker_size,p_manager)) {
-                               opj_event_msg_v2(p_manager, EVT_ERROR, "Marker is not compliant with its position\n");
-                               return OPJ_FALSE;
-                       }
+       fprintf(out_stream,"}\n");
 
-                       if (p_j2k->m_specific_param.m_decoder.m_skip_data) {
-                               /* Skip the rest of the tile part header*/
-                               if (opj_stream_skip(p_stream,p_j2k->m_specific_param.m_decoder.m_sot_length,p_manager) != p_j2k->m_specific_param.m_decoder.m_sot_length) {
-                                       opj_event_msg_v2(p_manager, EVT_ERROR, "Stream too short\n");
-                                       return OPJ_FALSE;
-                               }
-                               l_current_marker = J2K_MS_SOD; /* Normally we reached a SOD */
+}
+
+/**
+ * Dump info elements of the codestream extract from the main header.
+ *
+ *@param p_j2k                         the jpeg2000 codec.
+ *@param out_stream                    output stream where dump the elements.
+ *
+*/
+void j2k_dump_MH_info(opj_j2k_v2_t* p_j2k, FILE* out_stream)
+{
+       opj_tcp_v2_t * l_default_tile=NULL;
+
+       fprintf(out_stream, "Codestream info from main header: {\n");
+
+       fprintf(out_stream, "\t tx0=%d, ty0=%d\n", p_j2k->m_cp.tx0, p_j2k->m_cp.ty0);
+       fprintf(out_stream, "\t tdx=%d, tdy=%d\n", p_j2k->m_cp.tdx, p_j2k->m_cp.tdy);
+       fprintf(out_stream, "\t tw=%d, th=%d\n", p_j2k->m_cp.tw, p_j2k->m_cp.th);
+
+       l_default_tile = p_j2k->m_specific_param.m_decoder.m_default_tcp;
+       if (l_default_tile)
+       {
+               OPJ_INT32 compno;
+               OPJ_INT32 numcomps = p_j2k->m_private_image->numcomps;
+
+               fprintf(out_stream, "\t default tile {\n");
+               fprintf(out_stream, "\t\t csty=%#x\n", l_default_tile->csty);
+               fprintf(out_stream, "\t\t prg=%#x\n", l_default_tile->prg);
+               fprintf(out_stream, "\t\t numlayers=%d\n", l_default_tile->numlayers);
+               fprintf(out_stream, "\t\t mct=%x\n", l_default_tile->mct);
+
+               for (compno = 0; compno < numcomps; compno++) {
+                       opj_tccp_t *l_tccp = &(l_default_tile->tccps[compno]);
+                       OPJ_INT32 resno, bandno, numbands;
+
+                       /* coding style*/
+                       fprintf(out_stream, "\t\t comp %d {\n", compno);
+                       fprintf(out_stream, "\t\t\t csty=%#x\n", l_tccp->csty);
+                       fprintf(out_stream, "\t\t\t numresolutions=%d\n", l_tccp->numresolutions);
+                       fprintf(out_stream, "\t\t\t cblkw=2^%d\n", l_tccp->cblkw);
+                       fprintf(out_stream, "\t\t\t cblkh=2^%d\n", l_tccp->cblkh);
+                       fprintf(out_stream, "\t\t\t cblksty=%#x\n", l_tccp->cblksty);
+                       fprintf(out_stream, "\t\t\t qmfbid=%d\n", l_tccp->qmfbid);
+
+                       fprintf(out_stream, "\t\t\t preccintsize (w,h)=");
+                       for (resno = 0; resno < l_tccp->numresolutions; resno++) {
+                               fprintf(out_stream, "(%d,%d) ", l_tccp->prcw[resno], l_tccp->prch[resno]);
                        }
-                       else {
-                               /* Try to read 2 bytes (the next marker ID) from stream and copy them into the buffer*/
-                               if (opj_stream_read_data(p_stream,p_j2k->m_specific_param.m_decoder.m_header_data,2,p_manager) != 2) {
-                                       opj_event_msg_v2(p_manager, EVT_ERROR, "Stream too short\n");
-                                       return OPJ_FALSE;
-                               }
-                               /* Read 2 bytes from the buffer as the new marker ID */
-                               opj_read_bytes(p_j2k->m_specific_param.m_decoder.m_header_data,&l_current_marker,2);
+                       fprintf(out_stream, "\n");
+
+                       /* quantization style*/
+                       fprintf(out_stream, "\t\t\t qntsty=%d\n", l_tccp->qntsty);
+                       fprintf(out_stream, "\t\t\t numgbits=%d\n", l_tccp->numgbits);
+                       fprintf(out_stream, "\t\t\t stepsizes (m,e)=");
+                       numbands = (l_tccp->qntsty == J2K_CCP_QNTSTY_SIQNT) ? 1 : l_tccp->numresolutions * 3 - 2;
+                       for (bandno = 0; bandno < numbands; bandno++) {
+                               fprintf(out_stream, "(%d,%d) ", l_tccp->stepsizes[bandno].mant,
+                                       l_tccp->stepsizes[bandno].expn);
                        }
-               }
+                       fprintf(out_stream, "\n");
 
-               /* If we didn't skip data before, we need to read the SOD marker*/
-               if (! p_j2k->m_specific_param.m_decoder.m_skip_data) {
-                       /* Try to read the SOD marker and skip data ? FIXME */
-                       if (! j2k_read_sod_v2(p_j2k, p_stream, p_manager)) {
-                               return OPJ_FALSE;
-                       }
-               }
-               else {
-                       /* Indicate we will try to read a new tile-part header*/
-                       p_j2k->m_specific_param.m_decoder.m_skip_data = 0;
-                       p_j2k->m_specific_param.m_decoder.m_can_decode = 0;
-                       p_j2k->m_specific_param.m_decoder.m_state = J2K_STATE_TPHSOT;
+                       /* RGN value*/
+                       fprintf(out_stream, "\t\t\t roishift=%d\n", l_tccp->roishift);
 
-                       /* Try to read 2 bytes (the next marker ID) from stream and copy them into the buffer */
-                       if (opj_stream_read_data(p_stream,p_j2k->m_specific_param.m_decoder.m_header_data,2,p_manager) != 2) {
-                               opj_event_msg_v2(p_manager, EVT_ERROR, "Stream too short\n");
-                               return OPJ_FALSE;
-                       }
+                       fprintf(out_stream, "\t\t }\n");
+               } /*end of component of default tile*/
+               fprintf(out_stream, "\t }\n"); /*end of default tile*/
 
-                       /* Read 2 bytes from buffer as the new marker ID */
-                       opj_read_bytes(p_j2k->m_specific_param.m_decoder.m_header_data,&l_current_marker,2);
-               }
        }
 
-       /* Current marker is the EOC marker ?*/
-       if (l_current_marker == J2K_MS_EOC) {
-               if (p_j2k->m_specific_param.m_decoder.m_state != J2K_STATE_EOC ){
-                       p_j2k->m_current_tile_number = 0;
-                       p_j2k->m_specific_param.m_decoder.m_state = J2K_STATE_EOC;
-               }
-       }
+       fprintf(out_stream, "}\n");
 
-       /* FIXME ???*/
-       if ( ! p_j2k->m_specific_param.m_decoder.m_can_decode) {
-               l_tcp = p_j2k->m_cp.tcps + p_j2k->m_current_tile_number;
-               l_nb_tiles = p_j2k->m_cp.th * p_j2k->m_cp.tw;
+}
 
-               while( (p_j2k->m_current_tile_number < l_nb_tiles) && (l_tcp->m_data == 00) ) {
-                       ++p_j2k->m_current_tile_number;
-                       ++l_tcp;
-               }
+/**
+ * Dump an image header structure.
+ *
+ *@param img_header                    the image header to dump.
+ *@param dev_dump_flag         flag to describe if we are in the case of this function is use outside j2k_dump function
+ *@param out_stream                    output stream where dump the elements.
+ */
+void j2k_dump_image_header(opj_image_t* img_header, opj_bool dev_dump_flag, FILE* out_stream)
+{
+       char tab[2];
 
-               if (p_j2k->m_current_tile_number == l_nb_tiles) {
-                       *p_go_on = OPJ_FALSE;
-                       return OPJ_TRUE;
+       if (dev_dump_flag){
+               fprintf(stdout, "[DEV] Dump a image_header struct {\n");
+               tab[0] = '\0';
+       }
+       else {
+               fprintf(out_stream, "Image info {\n");
+               tab[0] = '\t';tab[1] = '\0';
+       }
+
+       fprintf(out_stream, "%s x0=%d, y0=%d\n", tab, img_header->x0, img_header->y0);
+       fprintf(out_stream,     "%s x1=%d, y1=%d\n", tab, img_header->x1, img_header->y1);
+       fprintf(out_stream, "%s numcomps=%d\n", tab, img_header->numcomps);
+
+       if (img_header->comps){
+               int compno;
+               for (compno = 0; compno < img_header->numcomps; compno++) {
+                       fprintf(out_stream, "%s\t component %d {\n", tab, compno);
+                       j2k_dump_image_comp_header(&(img_header->comps[compno]), dev_dump_flag, out_stream);
+                       fprintf(out_stream,"%s}\n",tab);
                }
        }
 
-       /*FIXME ???*/
-       if (! tcd_init_decode_tile(p_j2k->m_tcd, p_j2k->m_current_tile_number)) {
-               opj_event_msg_v2(p_manager, EVT_ERROR, "Cannot decode tile, memory error\n");
-               return OPJ_FALSE;
+       fprintf(out_stream, "}\n");
+}
+
+/**
+ * Dump a component image header structure.
+ *
+ *@param comp_header           the component image header to dump.
+ *@param dev_dump_flag         flag to describe if we are in the case of this function is use outside j2k_dump function
+ *@param out_stream                    output stream where dump the elements.
+ */
+void j2k_dump_image_comp_header(opj_image_comp_t* comp_header, opj_bool dev_dump_flag, FILE* out_stream)
+{
+       char tab[3];
+
+       if (dev_dump_flag){
+               fprintf(stdout, "[DEV] Dump a image_comp_header struct {\n");
+               tab[0] = '\0';
+       }       else {
+               tab[0] = '\t';tab[1] = '\t';tab[2] = '\0';
        }
 
-       *p_tile_index = p_j2k->m_current_tile_number;
-       *p_go_on = OPJ_TRUE;
-       *p_data_size = tcd_get_decoded_tile_size(p_j2k->m_tcd);
-       *p_tile_x0 = p_j2k->m_tcd->tcd_image->tiles->x0;
-       *p_tile_y0 = p_j2k->m_tcd->tcd_image->tiles->y0;
-       *p_tile_x1 = p_j2k->m_tcd->tcd_image->tiles->x1;
-       *p_tile_y1 = p_j2k->m_tcd->tcd_image->tiles->y1;
-       *p_nb_comps = p_j2k->m_tcd->tcd_image->tiles->numcomps;
-       p_j2k->m_specific_param.m_decoder.m_state |= 0x0080;// FIXME J2K_DEC_STATE_DATA;
+       fprintf(out_stream, "%s dx=%d, dy=%d\n", tab, comp_header->dx, comp_header->dy);
+       fprintf(out_stream, "%s prec=%d\n", tab, comp_header->prec);
+       fprintf(out_stream, "%s sgnd=%d\n", tab, comp_header->sgnd);
 
-       return OPJ_TRUE;
+       if (dev_dump_flag)
+               fprintf(out_stream, "}\n");
 }
 
 
-opj_bool j2k_decode_tile (
-                                       opj_j2k_v2_t * p_j2k,
-                                       OPJ_UINT32 p_tile_index,
-                                       OPJ_BYTE * p_data,
-                                       OPJ_UINT32 p_data_size,
-                                       opj_stream_private_t *p_stream,
-                                       opj_event_mgr_t * p_manager
-                                       )
+/**
+ * Get the codestream info from a JPEG2000 codec.
+ *
+ *@param       p_j2k                           the component image header to dump.
+ *
+ *@return      the codestream information extract from the jpg2000 codec
+ */
+opj_codestream_info_v2_t* j2k_get_cstr_info(opj_j2k_v2_t* p_j2k)
 {
-       OPJ_UINT32 l_current_marker;
-       OPJ_BYTE l_data [2];
-       opj_tcp_v2_t * l_tcp;
+       OPJ_UINT16 compno;
+       OPJ_UINT16 numcomps = p_j2k->m_private_image->numcomps;
+       opj_tcp_v2_t *l_default_tile;
+       opj_codestream_info_v2_t* cstr_info = (opj_codestream_info_v2_t*) opj_calloc(1,sizeof(opj_codestream_info_v2_t));
+
+       cstr_info->nbcomps = p_j2k->m_private_image->numcomps;
+
+       cstr_info->tx0 = p_j2k->m_cp.tx0;
+       cstr_info->ty0 = p_j2k->m_cp.ty0;
+       cstr_info->tdx = p_j2k->m_cp.tdx;
+       cstr_info->tdy = p_j2k->m_cp.tdy;
+       cstr_info->tw = p_j2k->m_cp.tw;
+       cstr_info->th = p_j2k->m_cp.th;
 
-       // preconditions
-       assert(p_stream != 00);
-       assert(p_j2k != 00);
-       assert(p_manager != 00);
+       cstr_info->tile_info = NULL; /* Not fill from the main header*/
 
-       if
-               (! (p_j2k->m_specific_param.m_decoder.m_state & 0x0080/*FIXME J2K_DEC_STATE_DATA*/) || p_tile_index != p_j2k->m_current_tile_number)
-       {
-               return OPJ_FALSE;
-       }
-       l_tcp = &(p_j2k->m_cp.tcps[p_tile_index]);
-       if
-               (! l_tcp->m_data)
-       {
-               j2k_tcp_destroy(&(p_j2k->m_cp.tcps[p_tile_index]));
-               return OPJ_FALSE;
-       }
-       if
-               (! tcd_decode_tile_v2(p_j2k->m_tcd, l_tcp->m_data, l_tcp->m_data_size, p_tile_index, p_j2k->cstr_info))
-       {
-               j2k_tcp_destroy(l_tcp);
-               p_j2k->m_specific_param.m_decoder.m_state |= 0x8000;//FIXME J2K_DEC_STATE_ERR;
-               return OPJ_FALSE;
-       }
-       if
-               (! tcd_update_tile_data(p_j2k->m_tcd,p_data,p_data_size))
-       {
-               return OPJ_FALSE;
-       }
-       j2k_tcp_destroy(l_tcp);
-       p_j2k->m_tcd->tcp = 0;
+       l_default_tile = p_j2k->m_specific_param.m_decoder.m_default_tcp;
 
-       p_j2k->m_specific_param.m_decoder.m_can_decode = 0;
-       p_j2k->m_specific_param.m_decoder.m_state &= (~ (0x0080));// FIXME J2K_DEC_STATE_DATA);
-       if
-               (p_j2k->m_specific_param.m_decoder.m_state != 0x0100)//FIXME J2K_DEC_STATE_EOC)
-       {
-               if
-                       (opj_stream_read_data(p_stream,l_data,2,p_manager) != 2)
-               {
-                       opj_event_msg_v2(p_manager, EVT_ERROR, "Stream too short\n");
-                       return OPJ_FALSE;
-               }
-               opj_read_bytes(l_data,&l_current_marker,2);
-               if
-                       (l_current_marker == J2K_MS_EOC)
+       cstr_info->m_default_tile_info.csty = l_default_tile->csty;
+       cstr_info->m_default_tile_info.prg = l_default_tile->prg;
+       cstr_info->m_default_tile_info.numlayers = l_default_tile->numlayers;
+       cstr_info->m_default_tile_info.mct = l_default_tile->mct;
+
+       cstr_info->m_default_tile_info.tccp_info = (opj_tccp_info_t*) opj_calloc(cstr_info->nbcomps, sizeof(opj_tccp_info_t));
+
+       for (compno = 0; compno < numcomps; compno++) {
+               opj_tccp_t *l_tccp = &(l_default_tile->tccps[compno]);
+               opj_tccp_info_t *l_tccp_info = &(cstr_info->m_default_tile_info.tccp_info[compno]);
+               OPJ_INT32 bandno, numbands;
+
+               /* coding style*/
+               l_tccp_info->csty = l_tccp->csty;
+               l_tccp_info->numresolutions = l_tccp->numresolutions;
+               l_tccp_info->cblkw = l_tccp->cblkw;
+               l_tccp_info->cblkh = l_tccp->cblkh;
+               l_tccp_info->cblksty = l_tccp->cblksty;
+               l_tccp_info->qmfbid = l_tccp->qmfbid;
+               if (l_tccp->numresolutions < J2K_MAXRLVLS)
                {
-                       p_j2k->m_current_tile_number = 0;
-                       p_j2k->m_specific_param.m_decoder.m_state =  0x0100;//FIXME J2K_DEC_STATE_EOC;
+                       memcpy(l_tccp_info->prch, l_tccp->prch, l_tccp->numresolutions);
+                       memcpy(l_tccp_info->prcw, l_tccp->prcw, l_tccp->numresolutions);
                }
-               else if
-                       (l_current_marker != J2K_MS_SOT)
-               {
-                       opj_event_msg_v2(p_manager, EVT_ERROR, "Stream too short, expected SOT\n");
-                       return OPJ_FALSE;
+
+               /* quantization style*/
+               l_tccp_info->qntsty = l_tccp->qntsty;
+               l_tccp_info->numgbits = l_tccp->numgbits;
+
+               numbands = (l_tccp->qntsty == J2K_CCP_QNTSTY_SIQNT) ? 1 : l_tccp->numresolutions * 3 - 2;
+               if (numbands < J2K_MAXBANDS) {
+                       for (bandno = 0; bandno < numbands; bandno++) {
+                               l_tccp_info->stepsizes_mant[bandno] = l_tccp->stepsizes[bandno].mant;
+                               l_tccp_info->stepsizes_expn[bandno] = l_tccp->stepsizes[bandno].expn;
+                       }
                }
+
+               /* RGN value*/
+               l_tccp_info->roishift = l_tccp->roishift;
        }
-       return OPJ_TRUE;
-}
 
 
+       return cstr_info;
+}
+
 /**
- * Sets the given area to be decoded. This function should be called right after opj_read_header and before any tile header reading.
+ * Get the codestream index from a JPEG2000 codec.
  *
- * @param      p_j2k                   the jpeg2000 codec.
- * @param      p_start_x               the left position of the rectangle to decode (in image coordinates).
- * @param      p_end_x                 the right position of the rectangle to decode (in image coordinates).
- * @param      p_start_y               the up position of the rectangle to decode (in image coordinates).
- * @param      p_end_y                 the bottom position of the rectangle to decode (in image coordinates).
- * @param      p_manager               the user event manager
+ *@param       p_j2k                           the component image header to dump.
  *
- * @return     true                    if the area could be set.
+ *@return      the codestream index extract from the jpg2000 codec
  */
-opj_bool j2k_set_decode_area(  opj_j2k_v2_t *p_j2k,
-                                                               OPJ_INT32 p_start_x, OPJ_INT32 p_start_y,
-                                                               OPJ_INT32 p_end_x, OPJ_INT32 p_end_y,
-                                                               struct opj_event_mgr * p_manager )
+opj_codestream_index_t* j2k_get_cstr_index(opj_j2k_v2_t* p_j2k)
 {
-       opj_cp_v2_t * l_cp = &(p_j2k->m_cp);
-
-       /* Check if we are read the main header */
-       if (p_j2k->m_specific_param.m_decoder.m_state != J2K_STATE_TPHSOT) { // FIXME J2K_DEC_STATE_TPHSOT)
-               opj_event_msg_v2(p_manager, EVT_ERROR, "Need to decode the main header before begin to decode the remaining codestream");
-               return OPJ_FALSE;
-       }
+       opj_codestream_index_t* l_cstr_index = (opj_codestream_index_t*)
+                       opj_calloc(1,sizeof(opj_codestream_index_t));
+       if (!l_cstr_index)
+               return NULL;
 
-       /* ----- */
-       /* Check if the positions provided by the user are correct */
+       l_cstr_index->main_head_start = p_j2k->cstr_index->main_head_start;
+       l_cstr_index->main_head_end = p_j2k->cstr_index->main_head_end;
+       l_cstr_index->codestream_size = p_j2k->cstr_index->codestream_size;
 
-       /* Left */
-       if (p_start_x > l_cp->tx0 + l_cp->tw * l_cp->tdx) {
-               opj_event_msg_v2(p_manager, EVT_ERROR,
-                       "Left position of the decoded area (ROI_x0=%d) is outside the tile area (XTOsiz + nb_tw x XTsiz=%d).\n",
-                       p_start_x, l_cp->tx0 + l_cp->tw * l_cp->tdx);
-               return OPJ_FALSE;
-       }
-       else if (p_start_x < l_cp->tx0){
-               opj_event_msg_v2(p_manager, EVT_WARNING,
-                               "Left position of the decoded area (ROI_x0=%d) is outside the tile area (XTOsiz=%d).\n",
-                               p_start_x, l_cp->tx0);
-               p_j2k->m_specific_param.m_decoder.m_start_tile_x = 0;
+       l_cstr_index->marknum = p_j2k->cstr_index->marknum;
+       l_cstr_index->marker = (opj_marker_info_t*)opj_malloc(l_cstr_index->marknum*sizeof(opj_marker_info_t));
+       if (!l_cstr_index->marker){
+               opj_free( l_cstr_index);
+               return NULL;
        }
-       else
-               p_j2k->m_specific_param.m_decoder.m_start_tile_x = (p_start_x - l_cp->tx0) / l_cp->tdx;
 
-       /* Up */
-       if (p_start_y > l_cp->ty0 + l_cp->th * l_cp->tdy){
-               opj_event_msg_v2(p_manager, EVT_ERROR,
-                               "Up position of the decoded area (ROI_y0=%d) is outside the tile area (YTOsiz + nb_th x YTsiz=%d).\n",
-                               p_start_y, l_cp->ty0 + l_cp->th * l_cp->tdy);
-               return OPJ_FALSE;
+       if (p_j2k->cstr_index->marker)
+               memcpy(l_cstr_index->marker, p_j2k->cstr_index->marker, l_cstr_index->marknum * sizeof(opj_marker_info_t) );
+       else{
+               opj_free(l_cstr_index->marker);
+               l_cstr_index->marker = NULL;
        }
-       else if (p_start_y < l_cp->ty0){
-               opj_event_msg_v2(p_manager, EVT_WARNING,
-                               "Up position of the decoded area (ROI_y0=%d) is outside the tile area (YTOsiz=%d).\n",
-                               p_start_y, l_cp->ty0);
-               p_j2k->m_specific_param.m_decoder.m_start_tile_y = 0;
+
+       l_cstr_index->nb_of_tiles = p_j2k->cstr_index->nb_of_tiles;
+       l_cstr_index->tile_index = (opj_tile_index_t*)opj_calloc(l_cstr_index->nb_of_tiles, sizeof(opj_tile_index_t) );
+       if (!l_cstr_index->tile_index){
+               opj_free( l_cstr_index->marker);
+               opj_free( l_cstr_index);
+               return NULL;
        }
-       else
-               p_j2k->m_specific_param.m_decoder.m_start_tile_y = (p_start_y - l_cp->ty0) / l_cp->tdy;
 
-       /* Right */
-       if (p_end_x < l_cp->tx0) {
-               opj_event_msg_v2(p_manager, EVT_ERROR,
-                       "Right position of the decoded area (ROI_x1=%d) is outside the tile area (XTOsiz=%d).\n",
-                       p_end_x, l_cp->tx0);
-               return OPJ_FALSE;
+       if (!p_j2k->cstr_index->tile_index){
+               opj_free(l_cstr_index->tile_index);
+               l_cstr_index->tile_index = NULL;
        }
-       else if (p_end_x > l_cp->tx0 + l_cp->tw * l_cp->tdx) {
-               opj_event_msg_v2(p_manager, EVT_WARNING,
-                       "Right position of the decoded area (ROI_x1=%d) is outside the tile area (XTOsiz + nb_tw x XTsiz=%d).\n",
-                       p_end_x, l_cp->tx0 + l_cp->tw * l_cp->tdx);
-               p_j2k->m_specific_param.m_decoder.m_end_tile_x = l_cp->tw; // FIXME (-1) ???
+       else {
+               OPJ_UINT32 it_tile = 0;
+               for (it_tile = 0; it_tile < l_cstr_index->nb_of_tiles; it_tile++ ){
+
+                       /* Tile Marker*/
+                       l_cstr_index->tile_index[it_tile].marknum = p_j2k->cstr_index->tile_index[it_tile].marknum;
+
+                       l_cstr_index->tile_index[it_tile].marker =
+                               (opj_marker_info_t*)opj_malloc(l_cstr_index->tile_index[it_tile].marknum*sizeof(opj_marker_info_t));
+
+                       if (!l_cstr_index->tile_index[it_tile].marker) {
+                               OPJ_UINT32 it_tile_free;
+
+                               for (it_tile_free=0; it_tile_free < it_tile; it_tile_free++){
+                                       opj_free(l_cstr_index->tile_index[it_tile_free].marker);
+                               }
+
+                               opj_free( l_cstr_index->tile_index);
+                               opj_free( l_cstr_index->marker);
+                               opj_free( l_cstr_index);
+                               return NULL;
+                       }
+
+                       if (p_j2k->cstr_index->tile_index[it_tile].marker)
+                               memcpy( l_cstr_index->tile_index[it_tile].marker,
+                                               p_j2k->cstr_index->tile_index[it_tile].marker,
+                                               l_cstr_index->tile_index[it_tile].marknum * sizeof(opj_marker_info_t) );
+                       else{
+                               opj_free(l_cstr_index->tile_index[it_tile].marker);
+                               l_cstr_index->tile_index[it_tile].marker = NULL;
+                       }
+
+                       /* Tile part index*/
+                       l_cstr_index->tile_index[it_tile].nb_tps = p_j2k->cstr_index->tile_index[it_tile].nb_tps;
+
+                       l_cstr_index->tile_index[it_tile].tp_index =
+                               (opj_tp_index_t*)opj_malloc(l_cstr_index->tile_index[it_tile].nb_tps*sizeof(opj_tp_index_t));
+
+                       if(!l_cstr_index->tile_index[it_tile].tp_index){
+                               OPJ_UINT32 it_tile_free;
+
+                               for (it_tile_free=0; it_tile_free < it_tile; it_tile_free++){
+                                       opj_free(l_cstr_index->tile_index[it_tile_free].marker);
+                                       opj_free(l_cstr_index->tile_index[it_tile_free].tp_index);
+                               }
+
+                               opj_free( l_cstr_index->tile_index);
+                               opj_free( l_cstr_index->marker);
+                               opj_free( l_cstr_index);
+                               return NULL;
+                       }
+
+                       if (p_j2k->cstr_index->tile_index[it_tile].tp_index){
+                               memcpy( l_cstr_index->tile_index[it_tile].tp_index,
+                                               p_j2k->cstr_index->tile_index[it_tile].tp_index,
+                                               l_cstr_index->tile_index[it_tile].nb_tps * sizeof(opj_tp_index_t) );
+                       }
+                       else{
+                               opj_free(l_cstr_index->tile_index[it_tile].tp_index);
+                               l_cstr_index->tile_index[it_tile].tp_index = NULL;
+                       }
+
+                       /* Packet index (NOT USED)*/
+                       l_cstr_index->tile_index[it_tile].nb_packet = 0;
+                       l_cstr_index->tile_index[it_tile].packet_index = NULL;
+
+               }
        }
-       else
-               p_j2k->m_specific_param.m_decoder.m_end_tile_x = int_ceildiv((p_end_x - l_cp->tx0), l_cp->tdx);
 
-       /* Bottom */
-       if (p_end_x < l_cp->ty0) {
-               opj_event_msg_v2(p_manager, EVT_ERROR,
-                       "Right position of the decoded area (ROI_y1=%d) is outside the tile area (YTOsiz=%d).\n",
-                       p_end_x, l_cp->ty0);
+       return l_cstr_index;
+}
+
+opj_bool j2k_allocate_tile_element_cstr_index(opj_j2k_v2_t *p_j2k)
+{
+       OPJ_UINT32 it_tile=0;
+
+       p_j2k->cstr_index->nb_of_tiles = p_j2k->m_cp.tw * p_j2k->m_cp.tw;
+       p_j2k->cstr_index->tile_index = (opj_tile_index_t*)opj_calloc(p_j2k->cstr_index->nb_of_tiles, sizeof(opj_tile_index_t));
+       if (!p_j2k->cstr_index->tile_index)
                return OPJ_FALSE;
-       }
-       if (p_end_y > l_cp->ty0 + l_cp->th * l_cp->tdy){
-               opj_event_msg_v2(p_manager, EVT_WARNING,
-                       "Bottom position of the decoded area (ROI_y1=%d) is outside the tile area (YTOsiz + nb_th x YTsiz=%d).\n",
-                       p_end_y, l_cp->ty0 + l_cp->th * l_cp->tdy);
-               p_j2k->m_specific_param.m_decoder.m_start_tile_y = l_cp->th; // FIXME (-1) ???
-       }
-       else
-               p_j2k->m_specific_param.m_decoder.m_end_tile_y = int_ceildiv((p_end_y - l_cp->ty0), l_cp->tdy);
-       /* ----- */
 
-       p_j2k->m_specific_param.m_decoder.m_discard_tiles = 1;
+       for (it_tile=0; it_tile < p_j2k->cstr_index->nb_of_tiles; it_tile++){
+               p_j2k->cstr_index->tile_index[it_tile].maxmarknum = 100;
+               p_j2k->cstr_index->tile_index[it_tile].marknum = 0;
+               p_j2k->cstr_index->tile_index[it_tile].marker = (opj_marker_info_t*)
+                               opj_calloc(p_j2k->cstr_index->tile_index[it_tile].maxmarknum, sizeof(opj_marker_info_t));
+               if (!p_j2k->cstr_index->tile_index[it_tile].marker)
+                       return OPJ_FALSE;
+       }
 
        return OPJ_TRUE;
 }
 
-
-/* ----------------------------------------------------------------------- */
-/* J2K / JPT decoder interface                                             */
-/* ----------------------------------------------------------------------- */
 /**
- * Creates a J2K decompression structure.
- *
- * @return a handle to a J2K decompressor if successful, NULL otherwise.
-*/
-opj_j2k_v2_t* j2k_create_decompress_v2()
+ * Reads the tiles.
+ */
+opj_bool j2k_decode_tiles (    opj_j2k_v2_t *p_j2k,
+                                                       opj_stream_private_t *p_stream,
+                                                       opj_event_mgr_t * p_manager)
 {
-       opj_j2k_v2_t *l_j2k = (opj_j2k_v2_t*) opj_malloc(sizeof(opj_j2k_v2_t));
-       if (!l_j2k) {
-               return 00;
+       opj_bool l_go_on = OPJ_TRUE;
+       OPJ_UINT32 l_current_tile_no;
+       OPJ_UINT32 l_data_size,l_max_data_size;
+       OPJ_INT32 l_tile_x0,l_tile_y0,l_tile_x1,l_tile_y1;
+       OPJ_UINT32 l_nb_comps;
+       OPJ_BYTE * l_current_data;
+
+       l_current_data = (OPJ_BYTE*)opj_malloc(1000);
+       if (! l_current_data) {
+               return OPJ_FALSE;
        }
-       memset(l_j2k,0,sizeof(opj_j2k_v2_t));
+       l_max_data_size = 1000;
 
-       l_j2k->m_is_decoder = 1;
-       l_j2k->m_cp.m_is_decoder = 1;
-       l_j2k->m_specific_param.m_decoder.m_default_tcp = (opj_tcp_v2_t*) opj_malloc(sizeof(opj_tcp_v2_t));
+       /*Allocate and initialize some elements of codestrem index*/
+       if (!j2k_allocate_tile_element_cstr_index(p_j2k))
+               return OPJ_FALSE;
 
-       if (!l_j2k->m_specific_param.m_decoder.m_default_tcp) {
-               opj_free(l_j2k);
-               return 00;
-       }
-       memset(l_j2k->m_specific_param.m_decoder.m_default_tcp,0,sizeof(opj_tcp_v2_t));
+       while (OPJ_TRUE) {
+               if (! j2k_read_tile_header(     p_j2k,
+                                                                       &l_current_tile_no,
+                                                                       &l_data_size,
+                                                                       &l_tile_x0, &l_tile_y0,
+                                                                       &l_tile_x1, &l_tile_y1,
+                                                                       &l_nb_comps,
+                                                                       &l_go_on,
+                                                                       p_stream,
+                                                                       p_manager)) {
+                       opj_free(l_current_data);
+                       return OPJ_FALSE;
+               }
 
-       l_j2k->m_specific_param.m_decoder.m_header_data = (OPJ_BYTE *) opj_malloc(J2K_DEFAULT_HEADER_SIZE);
-       if (! l_j2k->m_specific_param.m_decoder.m_header_data) {
-               j2k_destroy(l_j2k);
-               return 00;
-       }
+               if (! l_go_on) {
+                       break;
+               }
 
-       l_j2k->m_specific_param.m_decoder.m_header_data_size = J2K_DEFAULT_HEADER_SIZE;
+               if (l_data_size > l_max_data_size) {
+                       l_current_data = (OPJ_BYTE*)opj_realloc(l_current_data,l_data_size);
+                       if (! l_current_data) {
+                               return OPJ_FALSE;
+                       }
 
-       // codestream info creation
-       l_j2k->cstr_info = (opj_codestream_info_v2_t*) opj_malloc(sizeof(opj_codestream_info_v2_t));
-       if (!l_j2k->cstr_info){
-               opj_free(l_j2k);
-               return NULL;
-       }
+                       l_max_data_size = l_data_size;
+               }
 
-       // validation list creation
-       l_j2k->m_validation_list = opj_procedure_list_create();
-       if (! l_j2k->m_validation_list) {
-               j2k_destroy(l_j2k);
-               return 00;
-       }
+               if (! j2k_decode_tile(p_j2k,l_current_tile_no,l_current_data,l_data_size,p_stream,p_manager)) {
+                       opj_free(l_current_data);
+                       return OPJ_FALSE;
+               }
+               opj_event_msg_v2(p_manager, EVT_INFO, "Tile %d/%d has been decode.\n", l_current_tile_no +1, p_j2k->m_cp.th * p_j2k->m_cp.tw);
+
+               if (! j2k_update_image_data(p_j2k->m_tcd,l_current_data, p_j2k->m_output_image)) {
+                       opj_free(l_current_data);
+                       return OPJ_FALSE;
+               }
+               opj_event_msg_v2(p_manager, EVT_INFO, "Image data has been updated with tile %d.\n\n", l_current_tile_no + 1);
 
-       // execution list creation
-       l_j2k->m_procedure_list = opj_procedure_list_create();
-       if (! l_j2k->m_procedure_list) {
-               j2k_destroy(l_j2k);
-               return 00;
        }
 
-       return l_j2k;
-}
+       opj_free(l_current_data);
 
+       return OPJ_TRUE;
+}
 
 /**
- * Reads a SPCod or SPCoc element, i.e. the coding style of a given component of a tile.
- * @param      p_header_data   the data contained in the COM box.
- * @param      p_j2k                   the jpeg2000 codec.
- * @param      p_header_size   the size of the data contained in the COM marker.
- * @param      p_manager               the user event manager.
-*/
-opj_bool j2k_read_SPCod_SPCoc(
-                                                   opj_j2k_v2_t *p_j2k,
-                                                       OPJ_UINT32 compno,
-                                                       OPJ_BYTE * p_header_data,
-                                                       OPJ_UINT32 * p_header_size,
-                                                       struct opj_event_mgr * p_manager
-                                                       )
+ * Sets up the procedures to do on decoding data. Developpers wanting to extend the library can add their own reading procedures.
+ */
+void j2k_setup_decoding (opj_j2k_v2_t *p_j2k)
 {
-       OPJ_UINT32 i, l_tmp;
-       opj_cp_v2_t *l_cp = NULL;
-       opj_tcp_v2_t *l_tcp = NULL;
-       opj_tccp_t *l_tccp = NULL;
-       OPJ_BYTE * l_current_ptr = NULL;
-
-       /* preconditions */
+       // preconditions
        assert(p_j2k != 00);
-       assert(p_manager != 00);
-       assert(p_header_data != 00);
-
-       l_cp = &(p_j2k->m_cp);
-       l_tcp = (p_j2k->m_specific_param.m_decoder.m_state == J2K_STATE_TPH) ? /* FIXME J2K_DEC_STATE_TPH*/
-                               &l_cp->tcps[p_j2k->m_current_tile_number] :
-                               p_j2k->m_specific_param.m_decoder.m_default_tcp;
 
-       /* precondition again */
-       assert(compno < p_j2k->m_image_header->numcomps);
+       opj_procedure_list_add_procedure(p_j2k->m_procedure_list,(void*)j2k_decode_tiles);
+       /* DEVELOPER CORNER, add your custom procedures */
 
-       l_tccp = &l_tcp->tccps[compno];
-       l_current_ptr = p_header_data;
+}
 
-       /* make sure room is sufficient */
-       if (*p_header_size < 5) {
-               opj_event_msg_v2(p_manager, EVT_ERROR, "Error reading SPCod SPCoc element\n");
+/*
+ * Read and decode one tile.
+ */
+opj_bool j2k_decode_one_tile ( opj_j2k_v2_t *p_j2k,
+                                                               opj_stream_private_t *p_stream,
+                                                               opj_event_mgr_t * p_manager)
+{
+       opj_bool l_go_on = OPJ_TRUE;
+       OPJ_UINT32 l_current_tile_no;
+       OPJ_UINT32 l_tile_no_to_dec;
+       OPJ_UINT32 l_data_size,l_max_data_size;
+       OPJ_INT32 l_tile_x0,l_tile_y0,l_tile_x1,l_tile_y1;
+       OPJ_UINT32 l_nb_comps;
+       OPJ_BYTE * l_current_data;
+
+       l_current_data = (OPJ_BYTE*)opj_malloc(1000);
+       if (! l_current_data) {
                return OPJ_FALSE;
        }
+       l_max_data_size = 1000;
 
-       opj_read_bytes(l_current_ptr, &l_tccp->numresolutions ,1);              /* SPcox (D) */
-       ++l_tccp->numresolutions;                                                                               /* tccp->numresolutions = read() + 1 */
-       ++l_current_ptr;
-
-       /* If user wants to remove more resolutions than the codestream contains, return error */
-       if (l_cp->m_specific_param.m_dec.m_reduce >= l_tccp->numresolutions) {
-               opj_event_msg_v2(p_manager, EVT_ERROR, "Error decoding component %d.\nThe number of resolutions to remove is higher than the number "
-                                       "of resolutions of this component\nModify the cp_reduce parameter.\n\n", compno);
-               p_j2k->m_specific_param.m_decoder.m_state |= 0x8000;// FIXME J2K_DEC_STATE_ERR;
-               return OPJ_FALSE;
+       /*Allocate and initialize some elements of codestrem index if not already done*/
+       if( !p_j2k->cstr_index->tile_index)
+       {
+               if (!j2k_allocate_tile_element_cstr_index(p_j2k))
+                       return OPJ_FALSE;
        }
+       /* Move into the codestream to the first SOT used to decode the desired tile */
+       l_tile_no_to_dec = p_j2k->m_specific_param.m_decoder.m_tile_ind_to_dec;
+       if (p_j2k->cstr_index->tile_index)
+               if(p_j2k->cstr_index->tile_index->tp_index)
+               {
+                       if ( ! p_j2k->cstr_index->tile_index[l_tile_no_to_dec].nb_tps) {
+                               /* the index for this tile has not been built,
+                                *  so move to the last SOT read */
+                               if ( opj_stream_read_seek(p_stream, p_j2k->m_specific_param.m_decoder.m_last_sot_read_pos+2, p_manager) ){
+                                       opj_event_msg_v2(p_manager, EVT_ERROR, "Problem with seek function\n");
+                                       return OPJ_FALSE;
+                               }
+                       }
+                       else{
+                               if (opj_stream_read_seek(p_stream, p_j2k->cstr_index->tile_index[l_tile_no_to_dec].tp_index[0].start_pos+2, p_manager)) {
+                                       opj_event_msg_v2(p_manager, EVT_ERROR, "Problem with seek function\n");
+                                       return OPJ_FALSE;
+                               }
+                       }
+                       /* Special case if we have previously read the EOC marker (if the previous tile getted is the last ) */
+                       if(p_j2k->m_specific_param.m_decoder.m_state == J2K_STATE_EOC)
+                               p_j2k->m_specific_param.m_decoder.m_state = J2K_STATE_TPHSOT;
+               }
+
+       while (OPJ_TRUE) {
+               if (! j2k_read_tile_header(     p_j2k,
+                                                                       &l_current_tile_no,
+                                                                       &l_data_size,
+                                                                       &l_tile_x0, &l_tile_y0,
+                                                                       &l_tile_x1, &l_tile_y1,
+                                                                       &l_nb_comps,
+                                                                       &l_go_on,
+                                                                       p_stream,
+                                                                       p_manager)) {
+                       opj_free(l_current_data);
+                       return OPJ_FALSE;
+               }
 
-       opj_read_bytes(l_current_ptr,&l_tccp->cblkw ,1);                /* SPcoc (E) */
-       ++l_current_ptr;
-       l_tccp->cblkw += 2;
 
-       opj_read_bytes(l_current_ptr,&l_tccp->cblkh ,1);                /* SPcoc (F) */
-       ++l_current_ptr;
-       l_tccp->cblkh += 2;
+               if (! l_go_on) {
+                       break;
+               }
 
-       opj_read_bytes(l_current_ptr,&l_tccp->cblksty ,1);              /* SPcoc (G) */
-       ++l_current_ptr;
+               if (l_data_size > l_max_data_size) {
+                       l_current_data = (OPJ_BYTE*)opj_realloc(l_current_data,l_data_size);
+                       if (! l_current_data) {
+                               return OPJ_FALSE;
+                       }
 
-       opj_read_bytes(l_current_ptr,&l_tccp->qmfbid ,1);               /* SPcoc (H) */
-       ++l_current_ptr;
+                       l_max_data_size = l_data_size;
+               }
 
-       *p_header_size = *p_header_size - 5;
 
-       /* use custom precinct size ? */
-       if (l_tccp->csty & J2K_CCP_CSTY_PRT) {
-               if (*p_header_size < l_tccp->numresolutions) {
-                       opj_event_msg_v2(p_manager, EVT_ERROR, "Error reading SPCod SPCoc element\n");
+
+               if (! j2k_decode_tile(p_j2k,l_current_tile_no,l_current_data,l_data_size,p_stream,p_manager)) {
+                       opj_free(l_current_data);
                        return OPJ_FALSE;
                }
+               opj_event_msg_v2(p_manager, EVT_INFO, "Tile %d/%d has been decode.\n", l_current_tile_no, (p_j2k->m_cp.th * p_j2k->m_cp.tw) - 1);
 
-               for     (i = 0; i < l_tccp->numresolutions; ++i) {
-                       opj_read_bytes(l_current_ptr,&l_tmp ,1);                /* SPcoc (I_i) */
-                       ++l_current_ptr;
-                       l_tccp->prcw[i] = l_tmp & 0xf;
-                       l_tccp->prch[i] = l_tmp >> 4;
+               if (! j2k_update_image_data(p_j2k->m_tcd,l_current_data, p_j2k->m_output_image)) {
+                       opj_free(l_current_data);
+                       return OPJ_FALSE;
                }
+               opj_event_msg_v2(p_manager, EVT_INFO, "Image data has been updated with tile %d.\n\n", l_current_tile_no);
 
-               *p_header_size = *p_header_size - l_tccp->numresolutions;
-       }
-       else {
-               /* set default size for the precinct width and height */
-               for     (i = 0; i < l_tccp->numresolutions; ++i) {
-                       l_tccp->prcw[i] = 15;
-                       l_tccp->prch[i] = 15;
+               if(l_current_tile_no == l_tile_no_to_dec)
+               {
+                       /* move into the codestream to the the first SOT (FIXME or not move?)*/
+                       if (opj_stream_read_seek(p_stream, p_j2k->cstr_index->main_head_end + 2, p_manager) ) {
+                               opj_event_msg_v2(p_manager, EVT_ERROR, "Problem with seek function\n");
+                               return OPJ_FALSE;
+                       }
+                       break;
+               }
+               else {
+                       opj_event_msg_v2(p_manager, EVT_WARNING, "Tile read, decode and updated is not the desired (%d vs %d).\n", l_current_tile_no, l_tile_no_to_dec);
                }
-       }
-
-       /* INDEX >> */
-       if (p_j2k->cstr_info && compno == 0) {
-               OPJ_UINT32 l_data_size = l_tccp->numresolutions * sizeof(OPJ_UINT32);
 
-               p_j2k->cstr_info->tile[p_j2k->m_current_tile_number].tccp_info[compno].cblkh = l_tccp->cblkh;
-               p_j2k->cstr_info->tile[p_j2k->m_current_tile_number].tccp_info[compno].cblkw = l_tccp->cblkw;
-               p_j2k->cstr_info->tile[p_j2k->m_current_tile_number].tccp_info[compno].numresolutions = l_tccp->numresolutions;
-               p_j2k->cstr_info->tile[p_j2k->m_current_tile_number].tccp_info[compno].cblksty = l_tccp->cblksty;
-               p_j2k->cstr_info->tile[p_j2k->m_current_tile_number].tccp_info[compno].qmfbid = l_tccp->qmfbid;
+       }
 
+       opj_free(l_current_data);
 
-               memcpy(p_j2k->cstr_info->tile[p_j2k->m_current_tile_number].pdx,l_tccp->prcw, l_data_size);
-               memcpy(p_j2k->cstr_info->tile[p_j2k->m_current_tile_number].pdy,l_tccp->prch, l_data_size);
-       }
-       /* << INDEX */
        return OPJ_TRUE;
 }
 
+
 /**
- * Copies the tile component parameters of all the component from the first tile component.
- *
- * @param              p_j2k           the J2k codec.
+ * Sets up the procedures to do on decoding one tile. Developpers wanting to extend the library can add their own reading procedures.
  */
-void j2k_copy_tile_component_parameters( opj_j2k_v2_t *p_j2k )
+void j2k_setup_decoding_tile (opj_j2k_v2_t *p_j2k)
 {
-       // loop
-       OPJ_UINT32 i;
-       opj_cp_v2_t *l_cp = NULL;
-       opj_tcp_v2_t *l_tcp = NULL;
-       opj_tccp_t *l_ref_tccp = NULL, *l_copied_tccp = NULL;
-       OPJ_UINT32 l_prc_size;
-
-       /* preconditions */
+       // preconditions
        assert(p_j2k != 00);
 
-       l_cp = &(p_j2k->m_cp);
-       l_tcp = (p_j2k->m_specific_param.m_decoder.m_state == J2K_STATE_TPH) ? /* FIXME J2K_DEC_STATE_TPH*/
-                               &l_cp->tcps[p_j2k->m_current_tile_number] :
-                               p_j2k->m_specific_param.m_decoder.m_default_tcp;
-
-       l_ref_tccp = &l_tcp->tccps[0];
-       l_copied_tccp = l_ref_tccp + 1;
-       l_prc_size = l_ref_tccp->numresolutions * sizeof(OPJ_UINT32);
+       opj_procedure_list_add_procedure(p_j2k->m_procedure_list,(void*)j2k_decode_one_tile);
+       /* DEVELOPER CORNER, add your custom procedures */
 
-       for     (i=1; i<p_j2k->m_image_header->numcomps; ++i) {
-               l_copied_tccp->numresolutions = l_ref_tccp->numresolutions;
-               l_copied_tccp->cblkw = l_ref_tccp->cblkw;
-               l_copied_tccp->cblkh = l_ref_tccp->cblkh;
-               l_copied_tccp->cblksty = l_ref_tccp->cblksty;
-               l_copied_tccp->qmfbid = l_ref_tccp->qmfbid;
-               memcpy(l_copied_tccp->prcw,l_ref_tccp->prcw,l_prc_size);
-               memcpy(l_copied_tccp->prch,l_ref_tccp->prch,l_prc_size);
-               ++l_copied_tccp;
-       }
 }
 
+
 /**
- * Reads a SQcd or SQcc element, i.e. the quantization values of a band.
- *
- * @param      p_comp_no               the component being targeted.
- * @param      p_header_data   the data contained in the COM box.
- * @param      p_j2k                   the jpeg2000 codec.
- * @param      p_header_size   the size of the data contained in the COM marker.
- * @param      p_manager               the user event manager.
-*/
-opj_bool j2k_read_SQcd_SQcc(
-                                                       opj_j2k_v2_t *p_j2k,
-                                                       OPJ_UINT32 p_comp_no,
-                                                       OPJ_BYTE* p_header_data,
-                                                       OPJ_UINT32 * p_header_size,
-                                                       struct opj_event_mgr * p_manager
-                                                       )
+ * Decodes the tiles of the stream.
+ */
+opj_bool j2k_decode_v2(        opj_j2k_v2_t * p_j2k,
+                                               opj_stream_private_t * p_stream,
+                                               opj_image_t * p_image,
+                                               opj_event_mgr_t * p_manager)
 {
-       // loop
-       OPJ_UINT32 l_band_no;
-       opj_cp_v2_t *l_cp = 00;
-       opj_tcp_v2_t *l_tcp = 00;
-       opj_tccp_t *l_tccp = 00;
-       OPJ_BYTE * l_current_ptr = 00;
-       OPJ_UINT32 l_tmp, l_num_band;
-
-       // preconditions
-       assert(p_j2k != 00);
-       assert(p_manager != 00);
-       assert(p_header_data != 00);
+       OPJ_UINT32 compno;
 
-       l_cp = &(p_j2k->m_cp);
-       // come from tile part header or main header ?
-       l_tcp = (p_j2k->m_specific_param.m_decoder.m_state == J2K_STATE_TPH) ? /*FIXME J2K_DEC_STATE_TPH*/
-                               &l_cp->tcps[p_j2k->m_current_tile_number] :
-                               p_j2k->m_specific_param.m_decoder.m_default_tcp;
+       if (!p_image)
+               return OPJ_FALSE;
 
-       // precondition again
-       assert(p_comp_no <  p_j2k->m_image_header->numcomps);
+       p_j2k->m_output_image = opj_image_create0();
+       if (! (p_j2k->m_output_image)) {
+               return OPJ_FALSE;
+       }
+       opj_copy_image_header(p_image, p_j2k->m_output_image);
 
-       l_tccp = &l_tcp->tccps[p_comp_no];
-       l_current_ptr = p_header_data;
+       /* customization of the decoding */
+       j2k_setup_decoding(p_j2k);
 
-       if (*p_header_size < 1) {
-               opj_event_msg_v2(p_manager, EVT_ERROR, "Error reading SQcd or SQcc element\n");
+       /* Decode the codestream */
+       if (! j2k_exec (p_j2k,p_j2k->m_procedure_list,p_stream,p_manager)) {
+               opj_image_destroy(p_j2k->m_private_image);
+               p_j2k->m_private_image = NULL;
                return OPJ_FALSE;
        }
-       *p_header_size -= 1;
 
-       opj_read_bytes(l_current_ptr, &l_tmp ,1);                       /* Sqcx */
-       ++l_current_ptr;
+       /* Move data and copy one information from codec to output image*/
+       for (compno = 0; compno < p_image->numcomps; compno++) {
+               p_image->comps[compno].resno_decoded = p_j2k->m_output_image->comps[compno].resno_decoded;
+               p_image->comps[compno].data = p_j2k->m_output_image->comps[compno].data;
+               p_j2k->m_output_image->comps[compno].data = NULL;
+       }
 
-       l_tccp->qntsty = l_tmp & 0x1f;
-       l_tccp->numgbits = l_tmp >> 5;
-       if (l_tccp->qntsty == J2K_CCP_QNTSTY_SIQNT) {
-        l_num_band = 1;
+       return OPJ_TRUE;
+}
+
+
+/**
+ * Get the decoded tile.
+ *
+ * @param      p_j2k                   the jpeg2000 codestream codec.
+ * @param      p_stream                input_stream
+ * @param      p_image                 output image.   .
+ * @param      p_manager               the user event manager
+ * @param      tile_index              index of the tile we want decode
+ *
+ * @return     true                    if succeed.
+ */
+opj_bool j2k_get_tile( opj_j2k_v2_t *p_j2k,
+                                               opj_stream_private_t *p_stream,
+                                               opj_image_t* p_image,
+                                               struct opj_event_mgr * p_manager,
+                                               OPJ_UINT32 tile_index )
+{
+       OPJ_UINT32 compno;
+       OPJ_UINT32 l_tile_x, l_tile_y;
+       opj_image_comp_t* l_img_comp;
+
+       if (!p_image) {
+               opj_event_msg_v2(p_manager, EVT_ERROR, "We need a image previously created.\n");
+               return OPJ_FALSE;
        }
-       else {
-               l_num_band = (l_tccp->qntsty == J2K_CCP_QNTSTY_NOQNT) ?
-                       (*p_header_size) :
-                       (*p_header_size) / 2;
 
-               if( l_num_band > J2K_MAXBANDS ) {
-                       opj_event_msg_v2(p_manager, EVT_WARNING, "While reading CCP_QNTSTY element inside QCD or QCC marker segment, "
-                               "number of subbands (%d) is greater to J2K_MAXBANDS (%d). So we limiting the number of elements stored to "
-                               "J2K_MAXBANDS (%d) and skip the other. \n", l_num_band, J2K_MAXBANDS, J2K_MAXBANDS);
-                       //return OPJ_FALSE;
-               }
+       if ( (tile_index < 0) && (tile_index >= p_j2k->m_cp.tw * p_j2k->m_cp.th) ){
+               opj_event_msg_v2(p_manager, EVT_ERROR, "Tile index provided by the user is incorrect %d (max = %d) \n", tile_index, (p_j2k->m_cp.tw * p_j2k->m_cp.th) - 1);
+               return OPJ_FALSE;
        }
 
-#ifdef USE_JPWL
-       if (p_j2k->m_cp->correct) {
+       /* Compute the dimension of the desired tile*/
+       l_tile_x = tile_index % p_j2k->m_cp.tw;
+       l_tile_y = tile_index / p_j2k->m_cp.tw;
 
-               /* if JPWL is on, we check whether there are too many subbands */
-               if ((numbands < 0) || (numbands >= J2K_MAXBANDS)) {
-                       opj_event_msg(p_j2k->cinfo, JPWL_ASSUME ? EVT_WARNING : EVT_ERROR,
-                               "JPWL: bad number of subbands in Sqcx (%d)\n",
-                               numbands);
-                       if (!JPWL_ASSUME) {
-                               opj_event_msg(p_j2k->cinfo, EVT_ERROR, "JPWL: giving up\n");
-                               return;
-                       }
-                       /* we try to correct */
-                       numbands = 1;
-                       opj_event_msg(p_j2k->cinfo, EVT_WARNING, "- trying to adjust them\n"
-                               "- setting number of bands to %d => HYPOTHESIS!!!\n",
-                               numbands);
-               };
+       p_image->x0 = l_tile_x * p_j2k->m_cp.tdx + p_j2k->m_cp.tx0;
+       if (p_image->x0 < p_j2k->m_private_image->x0)
+               p_image->x0 = p_j2k->m_private_image->x0;
+       p_image->x1 = (l_tile_x + 1) * p_j2k->m_cp.tdx + p_j2k->m_cp.tx0;
+       if (p_image->x1 > p_j2k->m_private_image->x1)
+               p_image->x1 = p_j2k->m_private_image->x1;
 
-       };
-#endif /* USE_JPWL */
+       p_image->y0 = l_tile_y * p_j2k->m_cp.tdy + p_j2k->m_cp.ty0;
+       if (p_image->y0 < p_j2k->m_private_image->y0)
+               p_image->y0 = p_j2k->m_private_image->y0;
+       p_image->y1 = (l_tile_y + 1) * p_j2k->m_cp.tdy + p_j2k->m_cp.ty0;
+       if (p_image->y1 > p_j2k->m_private_image->y1)
+               p_image->y1 = p_j2k->m_private_image->y1;
 
-       if (l_tccp->qntsty == J2K_CCP_QNTSTY_NOQNT) {
-               for     (l_band_no = 0; l_band_no < l_num_band; l_band_no++) {
-                       opj_read_bytes(l_current_ptr, &l_tmp ,1);                       /* SPqcx_i */
-                       ++l_current_ptr;
-                       if (l_band_no < J2K_MAXBANDS){
-                               l_tccp->stepsizes[l_band_no].expn = l_tmp>>3;
-                               l_tccp->stepsizes[l_band_no].mant = 0;
-                       }
-               }
-               *p_header_size = *p_header_size - l_num_band;
-       }
-       else {
-               for     (l_band_no = 0; l_band_no < l_num_band; l_band_no++) {
-                       opj_read_bytes(l_current_ptr, &l_tmp ,2);                       /* SPqcx_i */
-                       l_current_ptr+=2;
-                       if (l_band_no < J2K_MAXBANDS){
-                               l_tccp->stepsizes[l_band_no].expn = l_tmp >> 11;
-                               l_tccp->stepsizes[l_band_no].mant = l_tmp & 0x7ff;
-                       }
-               }
-               *p_header_size = *p_header_size - 2*l_num_band;
+       l_img_comp = p_image->comps;
+       for (compno=0; compno < p_image->numcomps; ++compno)
+       {
+               OPJ_INT32 l_comp_x1, l_comp_y1;
+
+               l_img_comp->factor = p_j2k->m_private_image->comps[compno].factor;
+
+               l_img_comp->x0 = int_ceildiv(p_image->x0, l_img_comp->dx);
+               l_img_comp->y0 = int_ceildiv(p_image->y0, l_img_comp->dy);
+               l_comp_x1 = int_ceildiv(p_image->x1, l_img_comp->dx);
+               l_comp_y1 = int_ceildiv(p_image->y1, l_img_comp->dy);
+
+               l_img_comp->w = int_ceildivpow2(l_comp_x1, l_img_comp->factor) - int_ceildivpow2(l_img_comp->x0, l_img_comp->factor);
+               l_img_comp->h = int_ceildivpow2(l_comp_y1, l_img_comp->factor) - int_ceildivpow2(l_img_comp->y0, l_img_comp->factor);
+
+               l_img_comp++;
        }
 
-       /* Add Antonin : if scalar_derived -> compute other stepsizes */
-       if (l_tccp->qntsty == J2K_CCP_QNTSTY_SIQNT) {
-               for (l_band_no = 1; l_band_no < J2K_MAXBANDS; l_band_no++) {
-                       l_tccp->stepsizes[l_band_no].expn =
-                               ((l_tccp->stepsizes[0].expn) - ((l_band_no - 1) / 3) > 0) ?
-                                       (l_tccp->stepsizes[0].expn) - ((l_band_no - 1) / 3) : 0;
-                       l_tccp->stepsizes[l_band_no].mant = l_tccp->stepsizes[0].mant;
-               }
+       /* Destroy the previous output image*/
+       if (p_j2k->m_output_image)
+               opj_image_destroy(p_j2k->m_output_image);
+
+       /* Create the ouput image from the information previously computed*/
+       p_j2k->m_output_image = opj_image_create0();
+       if (! (p_j2k->m_output_image)) {
+               return OPJ_FALSE;
        }
+       opj_copy_image_header(p_image, p_j2k->m_output_image);
 
-       return OPJ_TRUE;
-}
+       p_j2k->m_specific_param.m_decoder.m_tile_ind_to_dec = tile_index;
 
+       /* customization of the decoding */
+       j2k_setup_decoding_tile(p_j2k);
 
+       /* Decode the codestream */
+       if (! j2k_exec (p_j2k,p_j2k->m_procedure_list,p_stream,p_manager)) {
+               opj_image_destroy(p_j2k->m_private_image);
+               p_j2k->m_private_image = NULL;
+               return OPJ_FALSE;
+       }
 
-/**
- * Copies the tile component parameters of all the component from the first tile component.
- *
- * @param              p_j2k           the J2k codec.
- */
-void j2k_copy_tile_quantization_parameters( opj_j2k_v2_t *p_j2k )
-{
-       OPJ_UINT32 i;
-       opj_cp_v2_t *l_cp = NULL;
-       opj_tcp_v2_t *l_tcp = NULL;
-       opj_tccp_t *l_ref_tccp = NULL;
-       opj_tccp_t *l_copied_tccp = NULL;
-       OPJ_UINT32 l_size;
+       /* Move data and copy one information from codec to output image*/
+       for (compno = 0; compno < p_image->numcomps; compno++) {
+               p_image->comps[compno].resno_decoded = p_j2k->m_output_image->comps[compno].resno_decoded;
 
-       // preconditions
-       assert(p_j2k != 00);
+               if (p_image->comps[compno].data)
+                       opj_free(p_image->comps[compno].data);
 
-       l_cp = &(p_j2k->m_cp);
-       l_tcp = p_j2k->m_specific_param.m_decoder.m_state == J2K_STATE_TPH /* FIXME J2K_DEC_STATE_TPH*/ ? &l_cp->tcps[p_j2k->m_current_tile_number] : p_j2k->m_specific_param.m_decoder.m_default_tcp;
-       // precondition again
-       l_ref_tccp = &l_tcp->tccps[0];
-       l_copied_tccp = l_ref_tccp + 1;
-       l_size = J2K_MAXBANDS * sizeof(opj_stepsize_t);
+               p_image->comps[compno].data = p_j2k->m_output_image->comps[compno].data;
 
-       for     (i=1;i<p_j2k->m_image_header->numcomps;++i) {
-               l_copied_tccp->qntsty = l_ref_tccp->qntsty;
-               l_copied_tccp->numgbits = l_ref_tccp->numgbits;
-               memcpy(l_copied_tccp->stepsizes,l_ref_tccp->stepsizes,l_size);
-               ++l_copied_tccp;
+               p_j2k->m_output_image->comps[compno].data = NULL;
+       }
+
+       return OPJ_TRUE;
+}
+
+opj_bool j2k_set_decoded_resolution_factor(opj_j2k_v2_t *p_j2k, OPJ_UINT32 res_factor, opj_event_mgr_t * p_manager)
+{
+       OPJ_UINT32 it_comp;
+
+       p_j2k->m_cp.m_specific_param.m_dec.m_reduce = res_factor;
+
+       if (p_j2k->m_private_image) {
+               if (p_j2k->m_private_image->comps) {
+                       if (p_j2k->m_specific_param.m_decoder.m_default_tcp) {
+                               if (p_j2k->m_specific_param.m_decoder.m_default_tcp->tccps) {
+                                       for (it_comp = 0 ; it_comp < p_j2k->m_private_image->numcomps; it_comp++) {
+                                               OPJ_UINT32 max_res = p_j2k->m_specific_param.m_decoder.m_default_tcp->tccps[it_comp].numresolutions;
+                                               if ( res_factor >= max_res){
+                                                       opj_event_msg_v2(p_manager, EVT_ERROR, "Resolution factor is superior to the maximum resolution in the component.\n");
+                                                       return OPJ_FALSE;
+                                               }
+                                               p_j2k->m_private_image->comps[it_comp].factor = res_factor;
+                                       }
+                                       return OPJ_TRUE;
+                               }
+                       }
+               }
        }
+
+       return OPJ_FALSE;
 }