OLD | NEW |
1 /* | 1 /* |
2 * The copyright in this software is being made available under the 2-clauses | 2 * The copyright in this software is being made available under the 2-clauses |
3 * BSD License, included below. This software may be subject to other third | 3 * BSD License, included below. This software may be subject to other third |
4 * party and contributor rights, including patent rights, and no such rights | 4 * party and contributor rights, including patent rights, and no such rights |
5 * are granted under this license. | 5 * are granted under this license. |
6 * | 6 * |
7 * Copyright (c) 2002-2014, Universite catholique de Louvain (UCL), Belgium | 7 * Copyright (c) 2002-2014, Universite catholique de Louvain (UCL), Belgium |
8 * Copyright (c) 2002-2014, Professor Benoit Macq | 8 * Copyright (c) 2002-2014, Professor Benoit Macq |
9 * Copyright (c) 2001-2003, David Janssens | 9 * Copyright (c) 2001-2003, David Janssens |
10 * Copyright (c) 2002-2003, Yannick Verschueren | 10 * Copyright (c) 2002-2003, Yannick Verschueren |
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 @param cstr_info FIXME DOC | 101 @param cstr_info FIXME DOC |
102 | 102 |
103 @return FIXME DOC | 103 @return FIXME DOC |
104 */ | 104 */ |
105 OPJ_BOOL opj_t2_decode_packets( opj_t2_t *t2, | 105 OPJ_BOOL opj_t2_decode_packets( opj_t2_t *t2, |
106 OPJ_UINT32 tileno, | 106 OPJ_UINT32 tileno, |
107 opj_tcd_tile_t *tile, | 107 opj_tcd_tile_t *tile, |
108 OPJ_BYTE *src, | 108 OPJ_BYTE *src, |
109 OPJ_UINT32 * p_data_read, | 109 OPJ_UINT32 * p_data_read, |
110 OPJ_UINT32 len, | 110 OPJ_UINT32 len, |
111 opj_codestream_index_t *cstr_info); | 111 opj_codestream_index_t *cstr_info, |
| 112 opj_event_mgr_t *p_manager); |
112 | 113 |
113 /** | 114 /** |
114 * Creates a Tier 2 handle | 115 * Creates a Tier 2 handle |
115 * | 116 * |
116 * @param p_image Source or destination image | 117 * @param p_image Source or destination image |
117 * @param p_cp Image coding parameters. | 118 * @param p_cp Image coding parameters. |
118 * @return a new T2 handle if successful, NULL otherwise. | 119 * @return a new T2 handle if successful, NULL otherwise. |
119 */ | 120 */ |
120 opj_t2_t* opj_t2_create(opj_image_t *p_image, opj_cp_t *p_cp); | 121 opj_t2_t* opj_t2_create(opj_image_t *p_image, opj_cp_t *p_cp); |
121 | 122 |
122 /** | 123 /** |
123 Destroy a T2 handle | 124 Destroy a T2 handle |
124 @param t2 T2 handle to destroy | 125 @param t2 T2 handle to destroy |
125 */ | 126 */ |
126 void opj_t2_destroy(opj_t2_t *t2); | 127 void opj_t2_destroy(opj_t2_t *t2); |
127 | 128 |
128 /* ----------------------------------------------------------------------- */ | 129 /* ----------------------------------------------------------------------- */ |
129 /*@}*/ | 130 /*@}*/ |
130 | 131 |
131 /*@}*/ | 132 /*@}*/ |
132 | 133 |
133 #endif /* __T2_H */ | 134 #endif /* __T2_H */ |
OLD | NEW |