2003-11-27 11:10:17 +01:00
|
|
|
/*
|
2007-01-15 10:55:40 +01:00
|
|
|
* Copyright (c) 2002-2007, Communications and Remote Sensing Laboratory, Universite catholique de Louvain (UCL), Belgium
|
|
|
|
* Copyright (c) 2002-2007, Professor Benoit Macq
|
2005-12-02 14:34:15 +01:00
|
|
|
* Copyright (c) 2001-2003, David Janssens
|
|
|
|
* Copyright (c) 2002-2003, Yannick Verschueren
|
2007-01-15 10:55:40 +01:00
|
|
|
* Copyright (c) 2003-2007, Francois-Olivier Devaux and Antonin Descampe
|
|
|
|
* Copyright (c) 2005, Herve Drolon, FreeImage Team
|
2012-11-15 16:22:29 +01:00
|
|
|
* Copyright (c) 2008;2011-2012, Centre National d'Etudes Spatiales (CNES), France
|
|
|
|
* Copyright (c) 2012, CS Systemes d'Information, France
|
2003-11-27 11:10:17 +01:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS `AS IS'
|
|
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
|
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __CIO_H
|
|
|
|
#define __CIO_H
|
2005-12-02 14:34:15 +01:00
|
|
|
/**
|
|
|
|
@file cio.h
|
|
|
|
@brief Implementation of a byte input-output process (CIO)
|
2003-11-27 11:10:17 +01:00
|
|
|
|
2005-12-02 14:34:15 +01:00
|
|
|
The functions in CIO.C have for goal to realize a byte input / output process.
|
|
|
|
*/
|
2004-02-13 10:47:40 +01:00
|
|
|
|
2005-12-02 14:34:15 +01:00
|
|
|
/** @defgroup CIO CIO - byte input-output stream */
|
|
|
|
/*@{*/
|
2004-02-13 10:47:40 +01:00
|
|
|
|
2011-09-19 15:04:04 +02:00
|
|
|
#include "opj_config.h"
|
|
|
|
|
|
|
|
/* ----------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
#if defined(OPJ_BIG_ENDIAN)
|
2011-09-21 12:01:54 +02:00
|
|
|
#define opj_write_bytes opj_write_bytes_BE
|
|
|
|
#define opj_read_bytes opj_read_bytes_BE
|
|
|
|
#define opj_write_double opj_write_double_BE
|
|
|
|
#define opj_read_double opj_read_double_BE
|
|
|
|
#define opj_write_float opj_write_float_BE
|
|
|
|
#define opj_read_float opj_read_float_BE
|
2011-09-19 15:04:04 +02:00
|
|
|
#else
|
2011-09-21 12:01:54 +02:00
|
|
|
#define opj_write_bytes opj_write_bytes_LE
|
|
|
|
#define opj_read_bytes opj_read_bytes_LE
|
|
|
|
#define opj_write_double opj_write_double_LE
|
|
|
|
#define opj_read_double opj_read_double_LE
|
|
|
|
#define opj_write_float opj_write_float_LE
|
|
|
|
#define opj_read_float opj_read_float_LE
|
2011-09-19 15:04:04 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
2012-04-23 11:16:17 +02:00
|
|
|
opj_signed_sentinel = -1, /* do not use in code */
|
2011-09-19 15:04:04 +02:00
|
|
|
opj_stream_e_output = 0x1,
|
|
|
|
opj_stream_e_input = 0x2,
|
|
|
|
opj_stream_e_end = 0x4,
|
|
|
|
opj_stream_e_error = 0x8
|
|
|
|
}
|
|
|
|
opj_stream_flag ;
|
|
|
|
|
|
|
|
/**
|
|
|
|
Byte input-output stream.
|
|
|
|
*/
|
|
|
|
typedef struct opj_stream_private
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* User data, be it files, ... The actual data depends on the type of the stream.
|
|
|
|
*/
|
|
|
|
void * m_user_data;
|
|
|
|
|
2011-10-11 10:01:31 +02:00
|
|
|
/**
|
|
|
|
* User data length
|
|
|
|
*/
|
2011-11-30 17:55:25 +01:00
|
|
|
OPJ_UINT64 m_user_data_length;
|
2011-10-11 10:01:31 +02:00
|
|
|
|
2011-09-19 15:04:04 +02:00
|
|
|
/**
|
|
|
|
* Pointer to actual read function (NULL at the initialization of the cio.
|
|
|
|
*/
|
|
|
|
opj_stream_read_fn m_read_fn;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Pointer to actual write function (NULL at the initialization of the cio.
|
|
|
|
*/
|
|
|
|
opj_stream_write_fn m_write_fn;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Pointer to actual skip function (NULL at the initialization of the cio.
|
|
|
|
* There is no seek function to prevent from back and forth slow procedures.
|
|
|
|
*/
|
|
|
|
opj_stream_skip_fn m_skip_fn;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Pointer to actual seek function (if available).
|
|
|
|
*/
|
|
|
|
opj_stream_seek_fn m_seek_fn;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Actual data stored into the stream if readed from. Data is read by chunk of fixed size.
|
|
|
|
* you should never access this data directly.
|
|
|
|
*/
|
|
|
|
OPJ_BYTE * m_stored_data;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Pointer to the current read data.
|
|
|
|
*/
|
|
|
|
OPJ_BYTE * m_current_data;
|
|
|
|
|
2012-10-25 15:35:30 +02:00
|
|
|
/**
|
|
|
|
* FIXME DOC.
|
|
|
|
*/
|
2011-11-30 17:55:25 +01:00
|
|
|
OPJ_OFF_T (* m_opj_skip)(struct opj_stream_private * ,OPJ_OFF_T , struct opj_event_mgr *);
|
2011-09-19 15:04:04 +02:00
|
|
|
|
2012-10-25 15:35:30 +02:00
|
|
|
/**
|
|
|
|
* FIXME DOC.
|
|
|
|
*/
|
2012-11-15 14:13:36 +01:00
|
|
|
OPJ_BOOL (* m_opj_seek) (struct opj_stream_private * , OPJ_OFF_T , struct opj_event_mgr *);
|
2011-09-19 15:04:04 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* number of bytes containing in the buffer.
|
|
|
|
*/
|
2011-11-30 17:55:25 +01:00
|
|
|
OPJ_SIZE_T m_bytes_in_buffer;
|
2011-09-19 15:04:04 +02:00
|
|
|
|
|
|
|
/**
|
2011-11-30 17:55:25 +01:00
|
|
|
* The number of bytes read/written from the beginning of the stream
|
2011-09-19 15:04:04 +02:00
|
|
|
*/
|
2011-11-30 17:55:25 +01:00
|
|
|
OPJ_OFF_T m_byte_offset;
|
2011-09-19 15:04:04 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The size of the buffer.
|
|
|
|
*/
|
2011-11-30 17:55:25 +01:00
|
|
|
OPJ_SIZE_T m_buffer_size;
|
2011-09-19 15:04:04 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Flags to tell the status of the stream.
|
|
|
|
*/
|
2012-04-23 11:16:17 +02:00
|
|
|
opj_stream_flag m_status;
|
2011-09-19 15:04:04 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
opj_stream_private_t;
|
|
|
|
|
2012-10-25 15:35:30 +02:00
|
|
|
/** @name Exported functions (see also openjpeg.h) */
|
|
|
|
/*@{*/
|
|
|
|
/* ----------------------------------------------------------------------- */
|
2011-09-19 15:04:04 +02:00
|
|
|
/**
|
|
|
|
* Write some bytes to the given data buffer, this function is used in Big Endian cpus.
|
|
|
|
* @param p_buffer pointer the data buffer to write data to.
|
|
|
|
* @param p_value the value to write
|
|
|
|
* @param p_nb_bytes the number of bytes to write
|
|
|
|
*/
|
2012-10-25 09:39:59 +02:00
|
|
|
void opj_write_bytes_BE (OPJ_BYTE * p_buffer, OPJ_UINT32 p_value, OPJ_UINT32 p_nb_bytes);
|
2011-09-19 15:04:04 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Reads some bytes from the given data buffer, this function is used in Big Endian cpus.
|
|
|
|
* @param p_buffer pointer the data buffer to read data from.
|
|
|
|
* @param p_value pointer to the value that will store the data.
|
|
|
|
* @param p_nb_bytes the nb bytes to read.
|
|
|
|
* @return the number of bytes read or -1 if an error occured.
|
|
|
|
*/
|
2012-10-25 09:39:59 +02:00
|
|
|
void opj_read_bytes_BE(const OPJ_BYTE * p_buffer, OPJ_UINT32 * p_value, OPJ_UINT32 p_nb_bytes);
|
2011-09-19 15:04:04 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Write some bytes to the given data buffer, this function is used in Little Endian cpus.
|
|
|
|
* @param p_buffer pointer the data buffer to write data to.
|
|
|
|
* @param p_value the value to write
|
|
|
|
* @param p_nb_bytes the number of bytes to write
|
|
|
|
* @return the number of bytes written or -1 if an error occured
|
|
|
|
*/
|
2012-10-25 09:39:59 +02:00
|
|
|
void opj_write_bytes_LE (OPJ_BYTE * p_buffer, OPJ_UINT32 p_value, OPJ_UINT32 p_nb_bytes);
|
2011-09-19 15:04:04 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Reads some bytes from the given data buffer, this function is used in Little Endian cpus.
|
|
|
|
* @param p_buffer pointer the data buffer to read data from.
|
|
|
|
* @param p_value pointer to the value that will store the data.
|
|
|
|
* @param p_nb_bytes the nb bytes to read.
|
|
|
|
* @return the number of bytes read or -1 if an error occured.
|
|
|
|
*/
|
2012-10-25 09:39:59 +02:00
|
|
|
void opj_read_bytes_LE(const OPJ_BYTE * p_buffer, OPJ_UINT32 * p_value, OPJ_UINT32 p_nb_bytes);
|
2011-09-19 15:04:04 +02:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Write some bytes to the given data buffer, this function is used in Little Endian cpus.
|
|
|
|
* @param p_buffer pointer the data buffer to write data to.
|
|
|
|
* @param p_value the value to write
|
|
|
|
*/
|
2012-10-25 09:39:59 +02:00
|
|
|
void opj_write_double_LE(OPJ_BYTE * p_buffer, OPJ_FLOAT64 p_value);
|
2011-09-19 15:04:04 +02:00
|
|
|
|
|
|
|
/***
|
|
|
|
* Write some bytes to the given data buffer, this function is used in Big Endian cpus.
|
|
|
|
* @param p_buffer pointer the data buffer to write data to.
|
|
|
|
* @param p_value the value to write
|
|
|
|
*/
|
|
|
|
void opj_write_double_BE(OPJ_BYTE * p_buffer, OPJ_FLOAT64 p_value);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reads some bytes from the given data buffer, this function is used in Little Endian cpus.
|
|
|
|
* @param p_buffer pointer the data buffer to read data from.
|
|
|
|
* @param p_value pointer to the value that will store the data.
|
|
|
|
*/
|
|
|
|
void opj_read_double_LE(const OPJ_BYTE * p_buffer, OPJ_FLOAT64 * p_value);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reads some bytes from the given data buffer, this function is used in Big Endian cpus.
|
|
|
|
* @param p_buffer pointer the data buffer to read data from.
|
|
|
|
* @param p_value pointer to the value that will store the data.
|
|
|
|
*/
|
|
|
|
void opj_read_double_BE(const OPJ_BYTE * p_buffer, OPJ_FLOAT64 * p_value);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reads some bytes from the given data buffer, this function is used in Little Endian cpus.
|
|
|
|
* @param p_buffer pointer the data buffer to read data from.
|
|
|
|
* @param p_value pointer to the value that will store the data.
|
|
|
|
*/
|
|
|
|
void opj_read_float_LE(const OPJ_BYTE * p_buffer, OPJ_FLOAT32 * p_value);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reads some bytes from the given data buffer, this function is used in Big Endian cpus.
|
|
|
|
* @param p_buffer pointer the data buffer to read data from.
|
|
|
|
* @param p_value pointer to the value that will store the data.
|
|
|
|
*/
|
|
|
|
void opj_read_float_BE(const OPJ_BYTE * p_buffer, OPJ_FLOAT32 * p_value);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Write some bytes to the given data buffer, this function is used in Little Endian cpus.
|
|
|
|
* @param p_buffer pointer the data buffer to write data to.
|
|
|
|
* @param p_value the value to write
|
|
|
|
*/
|
|
|
|
void opj_write_float_LE(OPJ_BYTE * p_buffer, OPJ_FLOAT32 p_value);
|
|
|
|
|
|
|
|
/***
|
|
|
|
* Write some bytes to the given data buffer, this function is used in Big Endian cpus.
|
|
|
|
* @param p_buffer pointer the data buffer to write data to.
|
|
|
|
* @param p_value the value to write
|
|
|
|
*/
|
|
|
|
void opj_write_float_BE(OPJ_BYTE * p_buffer, OPJ_FLOAT32 p_value);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reads some bytes from the stream.
|
|
|
|
* @param p_stream the stream to read data from.
|
|
|
|
* @param p_buffer pointer to the data buffer that will receive the data.
|
|
|
|
* @param p_size number of bytes to read.
|
|
|
|
* @param p_event_mgr the user event manager to be notified of special events.
|
|
|
|
* @return the number of bytes read, or -1 if an error occured or if the stream is at the end.
|
|
|
|
*/
|
2012-10-25 09:39:59 +02:00
|
|
|
OPJ_SIZE_T opj_stream_read_data (opj_stream_private_t * p_stream,OPJ_BYTE * p_buffer, OPJ_SIZE_T p_size, struct opj_event_mgr * p_event_mgr);
|
2011-09-19 15:04:04 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Writes some bytes to the stream.
|
|
|
|
* @param p_stream the stream to write data to.
|
|
|
|
* @param p_buffer pointer to the data buffer holds the data to be writtent.
|
|
|
|
* @param p_size number of bytes to write.
|
|
|
|
* @param p_event_mgr the user event manager to be notified of special events.
|
|
|
|
* @return the number of bytes writtent, or -1 if an error occured.
|
|
|
|
*/
|
2012-10-25 09:39:59 +02:00
|
|
|
OPJ_SIZE_T opj_stream_write_data (opj_stream_private_t * p_stream,const OPJ_BYTE * p_buffer, OPJ_SIZE_T p_size, struct opj_event_mgr * p_event_mgr);
|
2011-09-19 15:04:04 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Writes the content of the stream buffer to the stream.
|
|
|
|
* @param p_stream the stream to write data to.
|
|
|
|
* @param p_event_mgr the user event manager to be notified of special events.
|
|
|
|
* @return true if the data could be flushed, false else.
|
|
|
|
*/
|
2012-11-15 14:13:36 +01:00
|
|
|
OPJ_BOOL opj_stream_flush (opj_stream_private_t * p_stream, struct opj_event_mgr * p_event_mgr);
|
2011-09-19 15:04:04 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Skips a number of bytes from the stream.
|
|
|
|
* @param p_stream the stream to skip data from.
|
|
|
|
* @param p_size the number of bytes to skip.
|
|
|
|
* @param p_event_mgr the user event manager to be notified of special events.
|
|
|
|
* @return the number of bytes skipped, or -1 if an error occured.
|
|
|
|
*/
|
2012-10-25 09:39:59 +02:00
|
|
|
OPJ_OFF_T opj_stream_skip (opj_stream_private_t * p_stream,OPJ_OFF_T p_size, struct opj_event_mgr * p_event_mgr);
|
2011-09-19 15:04:04 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Tells the byte offset on the stream (similar to ftell).
|
|
|
|
*
|
|
|
|
* @param p_stream the stream to get the information from.
|
|
|
|
*
|
|
|
|
* @return the current position o fthe stream.
|
|
|
|
*/
|
2012-10-25 09:39:59 +02:00
|
|
|
OPJ_OFF_T opj_stream_tell (const opj_stream_private_t * p_stream);
|
2011-09-19 15:04:04 +02:00
|
|
|
|
2011-10-11 10:01:31 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the number of bytes left before the end of the stream (similar to cio_numbytesleft).
|
|
|
|
*
|
|
|
|
* @param p_stream the stream to get the information from.
|
|
|
|
*
|
|
|
|
* @return Number of bytes left before the end of the stream.
|
|
|
|
*/
|
2011-11-30 17:55:25 +01:00
|
|
|
OPJ_OFF_T opj_stream_get_number_byte_left (const opj_stream_private_t * p_stream);
|
2011-10-11 10:01:31 +02:00
|
|
|
|
2011-09-19 15:04:04 +02:00
|
|
|
/**
|
|
|
|
* Skips a number of bytes from the stream.
|
|
|
|
* @param p_stream the stream to skip data from.
|
|
|
|
* @param p_size the number of bytes to skip.
|
|
|
|
* @param p_event_mgr the user event manager to be notified of special events.
|
|
|
|
* @return the number of bytes skipped, or -1 if an error occured.
|
|
|
|
*/
|
2011-11-30 17:55:25 +01:00
|
|
|
OPJ_OFF_T opj_stream_write_skip (opj_stream_private_t * p_stream, OPJ_OFF_T p_size, struct opj_event_mgr * p_event_mgr);
|
2011-09-19 15:04:04 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Skips a number of bytes from the stream.
|
|
|
|
* @param p_stream the stream to skip data from.
|
|
|
|
* @param p_size the number of bytes to skip.
|
|
|
|
* @param p_event_mgr the user event manager to be notified of special events.
|
|
|
|
* @return the number of bytes skipped, or -1 if an error occured.
|
|
|
|
*/
|
2011-11-30 17:55:25 +01:00
|
|
|
OPJ_OFF_T opj_stream_read_skip (opj_stream_private_t * p_stream, OPJ_OFF_T p_size, struct opj_event_mgr * p_event_mgr);
|
2011-09-19 15:04:04 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Skips a number of bytes from the stream.
|
|
|
|
* @param p_stream the stream to skip data from.
|
|
|
|
* @param p_size the number of bytes to skip.
|
|
|
|
* @param p_event_mgr the user event manager to be notified of special events.
|
2012-08-16 11:13:58 +02:00
|
|
|
* @return OPJ_TRUE if success, or OPJ_FALSE if an error occured.
|
2011-09-19 15:04:04 +02:00
|
|
|
*/
|
2012-11-15 14:13:36 +01:00
|
|
|
OPJ_BOOL opj_stream_read_seek (opj_stream_private_t * p_stream, OPJ_OFF_T p_size, struct opj_event_mgr * p_event_mgr);
|
2011-09-19 15:04:04 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Skips a number of bytes from the stream.
|
|
|
|
* @param p_stream the stream to skip data from.
|
|
|
|
* @param p_size the number of bytes to skip.
|
|
|
|
* @param p_event_mgr the user event manager to be notified of special events.
|
|
|
|
* @return the number of bytes skipped, or -1 if an error occured.
|
|
|
|
*/
|
2012-11-15 14:13:36 +01:00
|
|
|
OPJ_BOOL opj_stream_write_seek (opj_stream_private_t * p_stream, OPJ_OFF_T p_size, struct opj_event_mgr * p_event_mgr);
|
2011-09-19 15:04:04 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Seeks a number of bytes from the stream.
|
|
|
|
* @param p_stream the stream to skip data from.
|
|
|
|
* @param p_size the number of bytes to skip.
|
|
|
|
* @param p_event_mgr the user event manager to be notified of special events.
|
|
|
|
* @return true if the stream is seekable.
|
|
|
|
*/
|
2012-11-15 14:13:36 +01:00
|
|
|
OPJ_BOOL opj_stream_seek (opj_stream_private_t * p_stream, OPJ_OFF_T p_size, struct opj_event_mgr * p_event_mgr);
|
2011-09-19 15:04:04 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Tells if the given stream is seekable.
|
|
|
|
*/
|
2012-11-15 14:13:36 +01:00
|
|
|
OPJ_BOOL opj_stream_has_seek (const opj_stream_private_t * p_stream);
|
2011-09-19 15:04:04 +02:00
|
|
|
|
2012-10-25 15:35:30 +02:00
|
|
|
/**
|
|
|
|
* FIXME DOC.
|
|
|
|
*/
|
2011-11-30 17:55:25 +01:00
|
|
|
OPJ_SIZE_T opj_stream_default_read (void * p_buffer, OPJ_SIZE_T p_nb_bytes, void * p_user_data);
|
2012-10-25 15:35:30 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* FIXME DOC.
|
|
|
|
*/
|
2011-11-30 17:55:25 +01:00
|
|
|
OPJ_SIZE_T opj_stream_default_write (void * p_buffer, OPJ_SIZE_T p_nb_bytes, void * p_user_data);
|
2012-10-25 15:35:30 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* FIXME DOC.
|
|
|
|
*/
|
2011-11-30 17:55:25 +01:00
|
|
|
OPJ_OFF_T opj_stream_default_skip (OPJ_OFF_T p_nb_bytes, void * p_user_data);
|
2012-10-25 15:35:30 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* FIXME DOC.
|
|
|
|
*/
|
2012-11-15 14:13:36 +01:00
|
|
|
OPJ_BOOL opj_stream_default_seek (OPJ_OFF_T p_nb_bytes, void * p_user_data);
|
2011-09-19 15:04:04 +02:00
|
|
|
|
2012-10-25 15:35:30 +02:00
|
|
|
/* ----------------------------------------------------------------------- */
|
|
|
|
/*@}*/
|
|
|
|
|
|
|
|
/*@}*/
|
2011-09-19 15:04:04 +02:00
|
|
|
|
|
|
|
|
2005-12-02 14:34:15 +01:00
|
|
|
#endif /* __CIO_H */
|
2005-05-23 17:25:48 +02:00
|
|
|
|