OLD | NEW |
1 /* | 1 /* |
2 * $Id: indexbox_manager.h 897 2011-08-28 21:43:57Z Kaori.Hagihara@gmail.com $ | 2 * $Id: indexbox_manager.h 897 2011-08-28 21:43:57Z Kaori.Hagihara@gmail.com $ |
3 * | 3 * |
4 * Copyright (c) 2002-2014, Universite catholique de Louvain (UCL), Belgium | 4 * Copyright (c) 2002-2014, Universite catholique de Louvain (UCL), Belgium |
5 * Copyright (c) 2002-2014, Professor Benoit Macq | 5 * Copyright (c) 2002-2014, Professor Benoit Macq |
6 * Copyright (c) 2003-2004, Yannick Verschueren | 6 * Copyright (c) 2003-2004, Yannick Verschueren |
7 * Copyright (c) 2010-2011, Kaori Hagihara | 7 * Copyright (c) 2010-2011, Kaori Hagihara |
8 * All rights reserved. | 8 * All rights reserved. |
9 * | 9 * |
10 * Redistribution and use in source and binary forms, with or without | 10 * Redistribution and use in source and binary forms, with or without |
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 * @param[in] cstr_info codestream information | 101 * @param[in] cstr_info codestream information |
102 * @param[in] EPHused true if EPH option used | 102 * @param[in] EPHused true if EPH option used |
103 * @param[in] j2klen length of j2k codestream | 103 * @param[in] j2klen length of j2k codestream |
104 * @param[in] cio file output handle | 104 * @param[in] cio file output handle |
105 * @return length of ppix box | 105 * @return length of ppix box |
106 */ | 106 */ |
107 int opj_write_phix( int coff, opj_codestream_info_t cstr_info, OPJ_BOOL EPHused,
int j2klen, opj_stream_private_t *cio, | 107 int opj_write_phix( int coff, opj_codestream_info_t cstr_info, OPJ_BOOL EPHused,
int j2klen, opj_stream_private_t *cio, |
108 opj_event_mgr_t * p_manager ); | 108 opj_event_mgr_t * p_manager ); |
109 | 109 |
110 /* | 110 /* |
111 * Wriet manifest box (box) | 111 * Write manifest box (box) |
112 * | 112 * |
113 * @param[in] second number to be visited | 113 * @param[in] second number to be visited |
114 * @param[in] v number of boxes | 114 * @param[in] v number of boxes |
115 * @param[in] box box to be manifested | 115 * @param[in] box box to be manifested |
116 * @param[in] cio file output handle | 116 * @param[in] cio file output handle |
117 */ | 117 */ |
118 | 118 |
119 void opj_write_manf(int second, | 119 void opj_write_manf(int second, |
120 int v, | 120 int v, |
121 opj_jp2_box_t *box, | 121 opj_jp2_box_t *box, |
(...skipping 17 matching lines...) Expand all Loading... |
139 int opj_write_ppixfaix( int coff, int compno, opj_codestream_info_t cstr_info, O
PJ_BOOL EPHused, int j2klen, opj_stream_private_t *cio, | 139 int opj_write_ppixfaix( int coff, int compno, opj_codestream_info_t cstr_info, O
PJ_BOOL EPHused, int j2klen, opj_stream_private_t *cio, |
140 opj_event_mgr_t * p_manager ); | 140 opj_event_mgr_t * p_manager ); |
141 | 141 |
142 int opj_write_tilemhix( int coff, opj_codestream_info_t cstr_info, int tileno, o
pj_stream_private_t *cio, | 142 int opj_write_tilemhix( int coff, opj_codestream_info_t cstr_info, int tileno, o
pj_stream_private_t *cio, |
143 opj_event_mgr_t * p_manager ); | 143 opj_event_mgr_t * p_manager ); |
144 | 144 |
145 int opj_write_tpixfaix( int coff, int compno, opj_codestream_info_t cstr_info, i
nt j2klen, opj_stream_private_t *cio, | 145 int opj_write_tpixfaix( int coff, int compno, opj_codestream_info_t cstr_info, i
nt j2klen, opj_stream_private_t *cio, |
146 opj_event_mgr_t * p_manager ); | 146 opj_event_mgr_t * p_manager ); |
147 | 147 |
148 #endif /* !INDEXBOX_MANAGER_H_ */ | 148 #endif /* !INDEXBOX_MANAGER_H_ */ |
OLD | NEW |