[trunk] Add some sanity checks when reading Ippm(i) segments
[openjpeg.git] / src / lib / openjp2 / t2.h
index 2cefac9bae14d1b336aca0c08d291eb4c2bff43c..936073a557a3ef3f5cb1ea13c2af79b19c120499 100644 (file)
@@ -5,6 +5,8 @@
  * 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;2011-2012, Centre National d'Etudes Spatiales (CNES), France 
+ * Copyright (c) 2012, CS Systemes d'Information, France
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
@@ -43,8 +45,6 @@
 Tier-2 coding
 */
 typedef struct opj_t2 {
-       /** codec context */
-       opj_common_ptr cinfo;
 
        /** Encoding: pointer to the src image. Decoding: pointer to the dst image. */
        opj_image_t *image;
@@ -52,19 +52,6 @@ typedef struct opj_t2 {
        opj_cp_t *cp;
 } opj_t2_t;
 
-/**
-Tier-2 coding
-*/
-typedef struct opj_t2_v2 {
-       /** codec context */
-       opj_common_ptr cinfo;
-
-       /** Encoding: pointer to the src image. Decoding: pointer to the dst image. */
-       opj_image_t *image;
-       /** pointer to the image coding parameters */
-       opj_cp_v2_t *cp;
-} opj_t2_v2_t;
-
 /** @name Exported functions */
 /*@{*/
 /* ----------------------------------------------------------------------- */
@@ -84,9 +71,9 @@ Encode the packets of a tile to a destination buffer
 @param pino             FIXME DOC
 @param t2_mode          If == 0 In Threshold calculation ,If == 1 Final pass
 */
-opj_bool opj_t2_encode_packets(        opj_t2_v2_t* t2,
+OPJ_BOOL opj_t2_encode_packets(        opj_t2_t* t2,
                                                                OPJ_UINT32 tileno,
-                                                               opj_tcd_tile_v2_t *tile,
+                                                               opj_tcd_tile_t *tile,
                                                                OPJ_UINT32 maxlayers,
                                                                OPJ_BYTE *dest,
                                                                OPJ_UINT32 * p_data_written,
@@ -109,9 +96,9 @@ Decode the packets of a tile from a source buffer
 
 @return FIXME DOC
  */
-opj_bool opj_t2_decode_packets(        opj_t2_v2_t *t2,
+OPJ_BOOL opj_t2_decode_packets(        opj_t2_t *t2,
                                 OPJ_UINT32 tileno,
-                                opj_tcd_tile_v2_t *tile,
+                                opj_tcd_tile_t *tile,
                                 OPJ_BYTE *src,
                                 OPJ_UINT32 * p_data_read,
                                 OPJ_UINT32 len,
@@ -124,13 +111,13 @@ opj_bool opj_t2_decode_packets(   opj_t2_v2_t *t2,
  * @param      p_cp            Image coding parameters.
  * @return             a new T2 handle if successful, NULL otherwise.
 */
-opj_t2_v2_t* opj_t2_create(opj_image_t *p_image, opj_cp_v2_t *p_cp);
+opj_t2_t* opj_t2_create(opj_image_t *p_image, opj_cp_t *p_cp);
 
 /**
 Destroy a T2 handle
 @param t2 T2 handle to destroy
 */
-void opj_t2_destroy(opj_t2_v2_t *t2);
+void opj_t2_destroy(opj_t2_t *t2);
 
 /* ----------------------------------------------------------------------- */
 /*@}*/