blob: 6996a9a0a1186f0db768caa7f17e6d6b1b423aa5 [file] [log] [blame]
Philip P. Moltmannac3d58c2016-03-04 15:19:21 -08001/*
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -07002 * 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
Philip P. Moltmannac3d58c2016-03-04 15:19:21 -08004 * party and contributor rights, including patent rights, and no such rights
5 * are granted under this license.
6 *
7 * Copyright (c) 2002-2014, Universite catholique de Louvain (UCL), Belgium
8 * Copyright (c) 2002-2014, Professor Benoit Macq
9 * Copyright (c) 2001-2003, David Janssens
10 * Copyright (c) 2002-2003, Yannick Verschueren
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -070011 * Copyright (c) 2003-2007, Francois-Olivier Devaux
Philip P. Moltmannac3d58c2016-03-04 15:19:21 -080012 * Copyright (c) 2003-2014, Antonin Descampe
13 * Copyright (c) 2005, Herve Drolon, FreeImage Team
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -070014 * Copyright (c) 2008, 2011-2012, Centre National d'Etudes Spatiales (CNES), FR
Philip P. Moltmannac3d58c2016-03-04 15:19:21 -080015 * Copyright (c) 2012, CS Systemes d'Information, France
16 * All rights reserved.
17 *
18 * Redistribution and use in source and binary forms, with or without
19 * modification, are permitted provided that the following conditions
20 * are met:
21 * 1. Redistributions of source code must retain the above copyright
22 * notice, this list of conditions and the following disclaimer.
23 * 2. Redistributions in binary form must reproduce the above copyright
24 * notice, this list of conditions and the following disclaimer in the
25 * documentation and/or other materials provided with the distribution.
26 *
27 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS `AS IS'
28 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
29 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
30 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
31 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
32 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
33 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
34 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
35 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
36 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
37 * POSSIBILITY OF SUCH DAMAGE.
38 */
39
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -070040#ifndef OPJ_CIO_H
41#define OPJ_CIO_H
Philip P. Moltmannac3d58c2016-03-04 15:19:21 -080042/**
43@file cio.h
44@brief Implementation of a byte input-output process (CIO)
45
46The functions in CIO.C have for goal to realize a byte input / output process.
47*/
48
49/** @defgroup CIO CIO - byte input-output stream */
50/*@{*/
51
52#include "opj_config_private.h"
53
54/* ----------------------------------------------------------------------- */
55
56#if defined(OPJ_BIG_ENDIAN)
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -070057#define opj_write_bytes opj_write_bytes_BE
58#define opj_read_bytes opj_read_bytes_BE
59#define opj_write_double opj_write_double_BE
60#define opj_read_double opj_read_double_BE
61#define opj_write_float opj_write_float_BE
62#define opj_read_float opj_read_float_BE
Philip P. Moltmannac3d58c2016-03-04 15:19:21 -080063#else
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -070064#define opj_write_bytes opj_write_bytes_LE
65#define opj_read_bytes opj_read_bytes_LE
66#define opj_write_double opj_write_double_LE
67#define opj_read_double opj_read_double_LE
68#define opj_write_float opj_write_float_LE
69#define opj_read_float opj_read_float_LE
Philip P. Moltmannac3d58c2016-03-04 15:19:21 -080070#endif
71
72
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -070073#define OPJ_STREAM_STATUS_OUTPUT 0x1U
74#define OPJ_STREAM_STATUS_INPUT 0x2U
75#define OPJ_STREAM_STATUS_END 0x4U
76#define OPJ_STREAM_STATUS_ERROR 0x8U
Philip P. Moltmannac3d58c2016-03-04 15:19:21 -080077
78/**
79Byte input-output stream.
80*/
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -070081typedef struct opj_stream_private {
82 /**
83 * User data, be it files, ... The actual data depends on the type of the stream.
84 */
85 void * m_user_data;
Philip P. Moltmannac3d58c2016-03-04 15:19:21 -080086
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -070087 /**
88 * Pointer to function to free m_user_data (NULL at initialization)
89 * when destroying the stream. If pointer is NULL the function is not
90 * called and the m_user_data is not freed (even if non-NULL).
91 */
92 opj_stream_free_user_data_fn m_free_user_data_fn;
Philip P. Moltmannac3d58c2016-03-04 15:19:21 -080093
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -070094 /**
95 * User data length
96 */
97 OPJ_UINT64 m_user_data_length;
Philip P. Moltmannac3d58c2016-03-04 15:19:21 -080098
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -070099 /**
100 * Pointer to actual read function (NULL at the initialization of the cio.
101 */
102 opj_stream_read_fn m_read_fn;
Philip P. Moltmannac3d58c2016-03-04 15:19:21 -0800103
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -0700104 /**
105 * Pointer to actual write function (NULL at the initialization of the cio.
106 */
107 opj_stream_write_fn m_write_fn;
Philip P. Moltmannac3d58c2016-03-04 15:19:21 -0800108
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -0700109 /**
110 * Pointer to actual skip function (NULL at the initialization of the cio.
111 * There is no seek function to prevent from back and forth slow procedures.
112 */
113 opj_stream_skip_fn m_skip_fn;
Philip P. Moltmannac3d58c2016-03-04 15:19:21 -0800114
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -0700115 /**
116 * Pointer to actual seek function (if available).
117 */
118 opj_stream_seek_fn m_seek_fn;
Philip P. Moltmannac3d58c2016-03-04 15:19:21 -0800119
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -0700120 /**
121 * Actual data stored into the stream if readed from. Data is read by chunk of fixed size.
122 * you should never access this data directly.
123 */
124 OPJ_BYTE * m_stored_data;
Philip P. Moltmannac3d58c2016-03-04 15:19:21 -0800125
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -0700126 /**
127 * Pointer to the current read data.
128 */
129 OPJ_BYTE * m_current_data;
Philip P. Moltmannac3d58c2016-03-04 15:19:21 -0800130
131 /**
132 * FIXME DOC.
133 */
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -0700134 OPJ_OFF_T(* m_opj_skip)(struct opj_stream_private *, OPJ_OFF_T,
135 struct opj_event_mgr *);
Philip P. Moltmannac3d58c2016-03-04 15:19:21 -0800136
137 /**
138 * FIXME DOC.
139 */
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -0700140 OPJ_BOOL(* m_opj_seek)(struct opj_stream_private *, OPJ_OFF_T,
141 struct opj_event_mgr *);
Philip P. Moltmannac3d58c2016-03-04 15:19:21 -0800142
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -0700143 /**
144 * number of bytes containing in the buffer.
145 */
146 OPJ_SIZE_T m_bytes_in_buffer;
Philip P. Moltmannac3d58c2016-03-04 15:19:21 -0800147
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -0700148 /**
149 * The number of bytes read/written from the beginning of the stream
150 */
151 OPJ_OFF_T m_byte_offset;
Philip P. Moltmannac3d58c2016-03-04 15:19:21 -0800152
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -0700153 /**
154 * The size of the buffer.
155 */
156 OPJ_SIZE_T m_buffer_size;
Philip P. Moltmannac3d58c2016-03-04 15:19:21 -0800157
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -0700158 /**
159 * Flags to tell the status of the stream.
160 * Used with OPJ_STREAM_STATUS_* defines.
161 */
162 OPJ_UINT32 m_status;
Philip P. Moltmannac3d58c2016-03-04 15:19:21 -0800163
164}
165opj_stream_private_t;
166
167/** @name Exported functions (see also openjpeg.h) */
168/*@{*/
169/* ----------------------------------------------------------------------- */
170/**
171 * Write some bytes to the given data buffer, this function is used in Big Endian cpus.
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -0700172 * @param p_buffer pointer the data buffer to write data to.
173 * @param p_value the value to write
174 * @param p_nb_bytes the number of bytes to write
Philip P. Moltmannac3d58c2016-03-04 15:19:21 -0800175*/
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -0700176void opj_write_bytes_BE(OPJ_BYTE * p_buffer, OPJ_UINT32 p_value,
177 OPJ_UINT32 p_nb_bytes);
Philip P. Moltmannac3d58c2016-03-04 15:19:21 -0800178
179/**
180 * Reads some bytes from the given data buffer, this function is used in Big Endian cpus.
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -0700181 * @param p_buffer pointer the data buffer to read data from.
182 * @param p_value pointer to the value that will store the data.
183 * @param p_nb_bytes the nb bytes to read.
184 * @return the number of bytes read or -1 if an error occurred.
Philip P. Moltmannac3d58c2016-03-04 15:19:21 -0800185 */
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -0700186void opj_read_bytes_BE(const OPJ_BYTE * p_buffer, OPJ_UINT32 * p_value,
187 OPJ_UINT32 p_nb_bytes);
Philip P. Moltmannac3d58c2016-03-04 15:19:21 -0800188
189/**
190 * Write some bytes to the given data buffer, this function is used in Little Endian cpus.
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -0700191 * @param p_buffer pointer the data buffer to write data to.
192 * @param p_value the value to write
193 * @param p_nb_bytes the number of bytes to write
194 * @return the number of bytes written or -1 if an error occurred
Philip P. Moltmannac3d58c2016-03-04 15:19:21 -0800195*/
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -0700196void opj_write_bytes_LE(OPJ_BYTE * p_buffer, OPJ_UINT32 p_value,
197 OPJ_UINT32 p_nb_bytes);
Philip P. Moltmannac3d58c2016-03-04 15:19:21 -0800198
199/**
200 * Reads some bytes from the given data buffer, this function is used in Little Endian cpus.
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -0700201 * @param p_buffer pointer the data buffer to read data from.
202 * @param p_value pointer to the value that will store the data.
203 * @param p_nb_bytes the nb bytes to read.
204 * @return the number of bytes read or -1 if an error occurred.
Philip P. Moltmannac3d58c2016-03-04 15:19:21 -0800205 */
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -0700206void opj_read_bytes_LE(const OPJ_BYTE * p_buffer, OPJ_UINT32 * p_value,
207 OPJ_UINT32 p_nb_bytes);
Philip P. Moltmannac3d58c2016-03-04 15:19:21 -0800208
209
210/**
211 * Write some bytes to the given data buffer, this function is used in Little Endian cpus.
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -0700212 * @param p_buffer pointer the data buffer to write data to.
213 * @param p_value the value to write
Philip P. Moltmannac3d58c2016-03-04 15:19:21 -0800214 */
215void opj_write_double_LE(OPJ_BYTE * p_buffer, OPJ_FLOAT64 p_value);
216
217/***
218 * Write some bytes to the given data buffer, this function is used in Big Endian cpus.
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -0700219 * @param p_buffer pointer the data buffer to write data to.
220 * @param p_value the value to write
Philip P. Moltmannac3d58c2016-03-04 15:19:21 -0800221 */
222void opj_write_double_BE(OPJ_BYTE * p_buffer, OPJ_FLOAT64 p_value);
223
224/**
225 * Reads some bytes from the given data buffer, this function is used in Little Endian cpus.
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -0700226 * @param p_buffer pointer the data buffer to read data from.
227 * @param p_value pointer to the value that will store the data.
Philip P. Moltmannac3d58c2016-03-04 15:19:21 -0800228 */
229void opj_read_double_LE(const OPJ_BYTE * p_buffer, OPJ_FLOAT64 * p_value);
230
231/**
232 * Reads some bytes from the given data buffer, this function is used in Big Endian cpus.
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -0700233 * @param p_buffer pointer the data buffer to read data from.
234 * @param p_value pointer to the value that will store the data.
Philip P. Moltmannac3d58c2016-03-04 15:19:21 -0800235 */
236void opj_read_double_BE(const OPJ_BYTE * p_buffer, OPJ_FLOAT64 * p_value);
237
238/**
239 * Reads some bytes from the given data buffer, this function is used in Little Endian cpus.
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -0700240 * @param p_buffer pointer the data buffer to read data from.
241 * @param p_value pointer to the value that will store the data.
Philip P. Moltmannac3d58c2016-03-04 15:19:21 -0800242 */
243void opj_read_float_LE(const OPJ_BYTE * p_buffer, OPJ_FLOAT32 * p_value);
244
245/**
246 * Reads some bytes from the given data buffer, this function is used in Big Endian cpus.
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -0700247 * @param p_buffer pointer the data buffer to read data from.
248 * @param p_value pointer to the value that will store the data.
Philip P. Moltmannac3d58c2016-03-04 15:19:21 -0800249 */
250void opj_read_float_BE(const OPJ_BYTE * p_buffer, OPJ_FLOAT32 * p_value);
251
252/**
253 * Write some bytes to the given data buffer, this function is used in Little Endian cpus.
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -0700254 * @param p_buffer pointer the data buffer to write data to.
255 * @param p_value the value to write
Philip P. Moltmannac3d58c2016-03-04 15:19:21 -0800256 */
257void opj_write_float_LE(OPJ_BYTE * p_buffer, OPJ_FLOAT32 p_value);
258
259/***
260 * Write some bytes to the given data buffer, this function is used in Big Endian cpus.
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -0700261 * @param p_buffer pointer the data buffer to write data to.
262 * @param p_value the value to write
Philip P. Moltmannac3d58c2016-03-04 15:19:21 -0800263 */
264void opj_write_float_BE(OPJ_BYTE * p_buffer, OPJ_FLOAT32 p_value);
265
266/**
267 * Reads some bytes from the stream.
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -0700268 * @param p_stream the stream to read data from.
269 * @param p_buffer pointer to the data buffer that will receive the data.
270 * @param p_size number of bytes to read.
271 * @param p_event_mgr the user event manager to be notified of special events.
272 * @return the number of bytes read, or -1 if an error occurred or if the stream is at the end.
Philip P. Moltmannac3d58c2016-03-04 15:19:21 -0800273 */
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -0700274OPJ_SIZE_T opj_stream_read_data(opj_stream_private_t * p_stream,
275 OPJ_BYTE * p_buffer, OPJ_SIZE_T p_size, struct opj_event_mgr * p_event_mgr);
Philip P. Moltmannac3d58c2016-03-04 15:19:21 -0800276
277/**
278 * Writes some bytes to the stream.
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -0700279 * @param p_stream the stream to write data to.
280 * @param p_buffer pointer to the data buffer holds the data to be writtent.
281 * @param p_size number of bytes to write.
282 * @param p_event_mgr the user event manager to be notified of special events.
283 * @return the number of bytes writtent, or -1 if an error occurred.
Philip P. Moltmannac3d58c2016-03-04 15:19:21 -0800284 */
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -0700285OPJ_SIZE_T opj_stream_write_data(opj_stream_private_t * p_stream,
286 const OPJ_BYTE * p_buffer, OPJ_SIZE_T p_size,
287 struct opj_event_mgr * p_event_mgr);
Philip P. Moltmannac3d58c2016-03-04 15:19:21 -0800288
289/**
290 * Writes the content of the stream buffer to the stream.
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -0700291 * @param p_stream the stream to write data to.
292 * @param p_event_mgr the user event manager to be notified of special events.
293 * @return true if the data could be flushed, false else.
Philip P. Moltmannac3d58c2016-03-04 15:19:21 -0800294 */
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -0700295OPJ_BOOL opj_stream_flush(opj_stream_private_t * p_stream,
296 struct opj_event_mgr * p_event_mgr);
Philip P. Moltmannac3d58c2016-03-04 15:19:21 -0800297
298/**
299 * Skips a number of bytes from the stream.
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -0700300 * @param p_stream the stream to skip data from.
301 * @param p_size the number of bytes to skip.
302 * @param p_event_mgr the user event manager to be notified of special events.
303 * @return the number of bytes skipped, or -1 if an error occurred.
Philip P. Moltmannac3d58c2016-03-04 15:19:21 -0800304 */
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -0700305OPJ_OFF_T opj_stream_skip(opj_stream_private_t * p_stream, OPJ_OFF_T p_size,
306 struct opj_event_mgr * p_event_mgr);
Philip P. Moltmannac3d58c2016-03-04 15:19:21 -0800307
308/**
309 * Tells the byte offset on the stream (similar to ftell).
310 *
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -0700311 * @param p_stream the stream to get the information from.
Philip P. Moltmannac3d58c2016-03-04 15:19:21 -0800312 *
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -0700313 * @return the current position o fthe stream.
Philip P. Moltmannac3d58c2016-03-04 15:19:21 -0800314 */
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -0700315OPJ_OFF_T opj_stream_tell(const opj_stream_private_t * p_stream);
Philip P. Moltmannac3d58c2016-03-04 15:19:21 -0800316
317
318/**
319 * Get the number of bytes left before the end of the stream (similar to cio_numbytesleft).
320 *
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -0700321 * @param p_stream the stream to get the information from.
Philip P. Moltmannac3d58c2016-03-04 15:19:21 -0800322 *
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -0700323 * @return Number of bytes left before the end of the stream.
Philip P. Moltmannac3d58c2016-03-04 15:19:21 -0800324 */
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -0700325OPJ_OFF_T opj_stream_get_number_byte_left(const opj_stream_private_t *
326 p_stream);
Philip P. Moltmannac3d58c2016-03-04 15:19:21 -0800327
328/**
329 * Skips a number of bytes from the stream.
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -0700330 * @param p_stream the stream to skip data from.
331 * @param p_size the number of bytes to skip.
332 * @param p_event_mgr the user event manager to be notified of special events.
333 * @return the number of bytes skipped, or -1 if an error occurred.
Philip P. Moltmannac3d58c2016-03-04 15:19:21 -0800334 */
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -0700335OPJ_OFF_T opj_stream_write_skip(opj_stream_private_t * p_stream,
336 OPJ_OFF_T p_size, struct opj_event_mgr * p_event_mgr);
Philip P. Moltmannac3d58c2016-03-04 15:19:21 -0800337
338/**
339 * Skips a number of bytes from the stream.
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -0700340 * @param p_stream the stream to skip data from.
341 * @param p_size the number of bytes to skip.
342 * @param p_event_mgr the user event manager to be notified of special events.
343 * @return the number of bytes skipped, or -1 if an error occurred.
Philip P. Moltmannac3d58c2016-03-04 15:19:21 -0800344 */
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -0700345OPJ_OFF_T opj_stream_read_skip(opj_stream_private_t * p_stream,
346 OPJ_OFF_T p_size, struct opj_event_mgr * p_event_mgr);
Philip P. Moltmannac3d58c2016-03-04 15:19:21 -0800347
348/**
349 * Skips a number of bytes from the stream.
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -0700350 * @param p_stream the stream to skip data from.
351 * @param p_size the number of bytes to skip.
352 * @param p_event_mgr the user event manager to be notified of special events.
353 * @return OPJ_TRUE if success, or OPJ_FALSE if an error occurred.
Philip P. Moltmannac3d58c2016-03-04 15:19:21 -0800354 */
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -0700355OPJ_BOOL opj_stream_read_seek(opj_stream_private_t * p_stream, OPJ_OFF_T p_size,
356 struct opj_event_mgr * p_event_mgr);
Philip P. Moltmannac3d58c2016-03-04 15:19:21 -0800357
358/**
359 * Skips a number of bytes from the stream.
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -0700360 * @param p_stream the stream to skip data from.
361 * @param p_size the number of bytes to skip.
362 * @param p_event_mgr the user event manager to be notified of special events.
363 * @return the number of bytes skipped, or -1 if an error occurred.
Philip P. Moltmannac3d58c2016-03-04 15:19:21 -0800364 */
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -0700365OPJ_BOOL opj_stream_write_seek(opj_stream_private_t * p_stream,
366 OPJ_OFF_T p_size, struct opj_event_mgr * p_event_mgr);
Philip P. Moltmannac3d58c2016-03-04 15:19:21 -0800367
368/**
369 * Seeks a number of bytes from the stream.
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -0700370 * @param p_stream the stream to skip data from.
371 * @param p_size the number of bytes to skip.
372 * @param p_event_mgr the user event manager to be notified of special events.
373 * @return true if the stream is seekable.
Philip P. Moltmannac3d58c2016-03-04 15:19:21 -0800374 */
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -0700375OPJ_BOOL opj_stream_seek(opj_stream_private_t * p_stream, OPJ_OFF_T p_size,
376 struct opj_event_mgr * p_event_mgr);
Philip P. Moltmannac3d58c2016-03-04 15:19:21 -0800377
378/**
379 * Tells if the given stream is seekable.
380 */
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -0700381OPJ_BOOL opj_stream_has_seek(const opj_stream_private_t * p_stream);
Philip P. Moltmannac3d58c2016-03-04 15:19:21 -0800382
383/**
384 * FIXME DOC.
385 */
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -0700386OPJ_SIZE_T opj_stream_default_read(void * p_buffer, OPJ_SIZE_T p_nb_bytes,
387 void * p_user_data);
Philip P. Moltmannac3d58c2016-03-04 15:19:21 -0800388
389/**
390 * FIXME DOC.
391 */
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -0700392OPJ_SIZE_T opj_stream_default_write(void * p_buffer, OPJ_SIZE_T p_nb_bytes,
393 void * p_user_data);
Philip P. Moltmannac3d58c2016-03-04 15:19:21 -0800394
395/**
396 * FIXME DOC.
397 */
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -0700398OPJ_OFF_T opj_stream_default_skip(OPJ_OFF_T p_nb_bytes, void * p_user_data);
Philip P. Moltmannac3d58c2016-03-04 15:19:21 -0800399
400/**
401 * FIXME DOC.
402 */
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -0700403OPJ_BOOL opj_stream_default_seek(OPJ_OFF_T p_nb_bytes, void * p_user_data);
Philip P. Moltmannac3d58c2016-03-04 15:19:21 -0800404
405/* ----------------------------------------------------------------------- */
406/*@}*/
407
408/*@}*/
409
410
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -0700411#endif /* OPJ_CIO_H */
Philip P. Moltmannac3d58c2016-03-04 15:19:21 -0800412