OpenJPEG  2.0.0
t2.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2002-2007, Communications and Remote Sensing Laboratory, Universite catholique de Louvain (UCL), Belgium
3  * Copyright (c) 2002-2007, Professor Benoit Macq
4  * Copyright (c) 2001-2003, David Janssens
5  * Copyright (c) 2002-2003, Yannick Verschueren
6  * Copyright (c) 2003-2007, Francois-Olivier Devaux and Antonin Descampe
7  * Copyright (c) 2005, Herve Drolon, FreeImage Team
8  * Copyright (c) 2008;2011-2012, Centre National d'Etudes Spatiales (CNES), France
9  * Copyright (c) 2012, CS Systemes d'Information, France
10  * All rights reserved.
11  *
12  * Redistribution and use in source and binary forms, with or without
13  * modification, are permitted provided that the following conditions
14  * are met:
15  * 1. Redistributions of source code must retain the above copyright
16  * notice, this list of conditions and the following disclaimer.
17  * 2. Redistributions in binary form must reproduce the above copyright
18  * notice, this list of conditions and the following disclaimer in the
19  * documentation and/or other materials provided with the distribution.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS `AS IS'
22  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
25  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31  * POSSIBILITY OF SUCH DAMAGE.
32  */
33 #ifndef __T2_H
34 #define __T2_H
35 
43 
47 typedef struct opj_t2 {
48 
53 } opj_t2_t;
54 
57 /* ----------------------------------------------------------------------- */
58 
75  OPJ_UINT32 tileno,
76  opj_tcd_tile_t *tile,
77  OPJ_UINT32 maxlayers,
78  OPJ_BYTE *dest,
79  OPJ_UINT32 * p_data_written,
80  OPJ_UINT32 len,
81  opj_codestream_info_t *cstr_info,
82  OPJ_UINT32 tpnum,
83  OPJ_INT32 tppos,
84  OPJ_UINT32 pino,
85  J2K_T2_MODE t2_mode);
86 
100  OPJ_UINT32 tileno,
101  opj_tcd_tile_t *tile,
102  OPJ_BYTE *src,
103  OPJ_UINT32 * p_data_read,
104  OPJ_UINT32 len,
105  opj_codestream_index_t *cstr_info);
106 
114 opj_t2_t* opj_t2_create(opj_image_t *p_image, opj_cp_t *p_cp);
115 
120 void opj_t2_destroy(opj_t2_t *t2);
121 
122 /* ----------------------------------------------------------------------- */
126 
127 #endif /* __T2_H */