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
|
2008-07-31 20:47:41 +02:00
|
|
|
* Copyright (c) 2008, Jerome Fimes, Communications & Systemes <jerome.fimes@c-s.fr>
|
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 __PI_H
|
|
|
|
#define __PI_H
|
2005-12-02 14:34:15 +01:00
|
|
|
/**
|
|
|
|
@file pi.h
|
|
|
|
@brief Implementation of a packet iterator (PI)
|
2003-11-27 11:10:17 +01:00
|
|
|
|
2005-12-02 14:34:15 +01:00
|
|
|
The functions in PI.C have for goal to realize a packet iterator that permits to get the next
|
|
|
|
packet following the progression order and change of it. The functions in PI.C are used
|
|
|
|
by some function in T2.C.
|
|
|
|
*/
|
2008-07-31 20:47:41 +02:00
|
|
|
#include "openjpeg.h"
|
|
|
|
#include "t2.h"
|
2005-12-02 14:34:15 +01:00
|
|
|
/** @defgroup PI PI - Implementation of a packet iterator */
|
|
|
|
/*@{*/
|
2008-07-31 20:47:41 +02:00
|
|
|
struct opj_poc;
|
|
|
|
struct opj_image;
|
|
|
|
struct opj_cp;
|
2005-12-02 14:34:15 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
FIXME: documentation
|
|
|
|
*/
|
|
|
|
typedef struct opj_pi_resolution {
|
2008-07-31 20:47:41 +02:00
|
|
|
OPJ_UINT32 pdx, pdy;
|
|
|
|
OPJ_UINT32 pw, ph;
|
2005-12-02 14:34:15 +01:00
|
|
|
} opj_pi_resolution_t;
|
2003-11-27 11:10:17 +01:00
|
|
|
|
2005-12-02 14:34:15 +01:00
|
|
|
/**
|
|
|
|
FIXME: documentation
|
|
|
|
*/
|
|
|
|
typedef struct opj_pi_comp {
|
2008-07-31 20:47:41 +02:00
|
|
|
OPJ_UINT32 dx, dy;
|
2005-12-02 14:34:15 +01:00
|
|
|
/** number of resolution levels */
|
2008-07-31 20:47:41 +02:00
|
|
|
OPJ_UINT32 numresolutions;
|
2005-12-02 14:34:15 +01:00
|
|
|
opj_pi_resolution_t *resolutions;
|
|
|
|
} opj_pi_comp_t;
|
2003-11-27 11:10:17 +01:00
|
|
|
|
2005-12-02 14:34:15 +01:00
|
|
|
/**
|
|
|
|
Packet iterator
|
|
|
|
*/
|
|
|
|
typedef struct opj_pi_iterator {
|
2007-03-20 18:15:18 +01:00
|
|
|
/** Enabling Tile part generation*/
|
2008-07-31 20:47:41 +02:00
|
|
|
OPJ_BYTE tp_on;
|
2005-12-08 10:38:47 +01:00
|
|
|
/** precise if the packet has been already used (usefull for progression order change) */
|
2008-07-31 20:47:41 +02:00
|
|
|
OPJ_INT16 *include;
|
2005-12-08 10:38:47 +01:00
|
|
|
/** layer step used to localize the packet in the include vector */
|
2008-07-31 20:47:41 +02:00
|
|
|
OPJ_UINT32 step_l;
|
2005-12-08 10:38:47 +01:00
|
|
|
/** resolution step used to localize the packet in the include vector */
|
2008-07-31 20:47:41 +02:00
|
|
|
OPJ_UINT32 step_r;
|
2005-12-08 10:38:47 +01:00
|
|
|
/** component step used to localize the packet in the include vector */
|
2008-07-31 20:47:41 +02:00
|
|
|
OPJ_UINT32 step_c;
|
2005-12-08 10:38:47 +01:00
|
|
|
/** precinct step used to localize the packet in the include vector */
|
2008-07-31 20:47:41 +02:00
|
|
|
OPJ_UINT32 step_p;
|
2005-12-08 10:38:47 +01:00
|
|
|
/** component that identify the packet */
|
2008-07-31 20:47:41 +02:00
|
|
|
OPJ_UINT32 compno;
|
2005-12-08 10:38:47 +01:00
|
|
|
/** resolution that identify the packet */
|
2008-07-31 20:47:41 +02:00
|
|
|
OPJ_UINT32 resno;
|
2005-12-08 10:38:47 +01:00
|
|
|
/** precinct that identify the packet */
|
2008-07-31 20:47:41 +02:00
|
|
|
OPJ_UINT32 precno;
|
2005-12-08 10:38:47 +01:00
|
|
|
/** layer that identify the packet */
|
2008-07-31 20:47:41 +02:00
|
|
|
OPJ_UINT32 layno;
|
2005-12-08 10:38:47 +01:00
|
|
|
/** progression order change information */
|
2008-07-31 20:47:41 +02:00
|
|
|
struct opj_poc poc;
|
2007-04-04 15:40:32 +02:00
|
|
|
/** number of components in the image */
|
2008-07-31 20:47:41 +02:00
|
|
|
OPJ_UINT32 numcomps;
|
2007-04-04 15:40:32 +02:00
|
|
|
/** Components*/
|
2005-12-08 10:38:47 +01:00
|
|
|
opj_pi_comp_t *comps;
|
2008-07-31 20:47:41 +02:00
|
|
|
OPJ_INT32 tx0, ty0, tx1, ty1;
|
|
|
|
OPJ_INT32 x, y;
|
|
|
|
OPJ_UINT32 dx, dy;
|
|
|
|
/** 0 if the first packet */
|
|
|
|
OPJ_UINT32 first : 1;
|
2005-12-02 14:34:15 +01:00
|
|
|
} opj_pi_iterator_t;
|
2003-11-27 11:10:17 +01:00
|
|
|
|
2005-12-02 14:34:15 +01:00
|
|
|
/** @name Exported functions */
|
|
|
|
/*@{*/
|
|
|
|
/* ----------------------------------------------------------------------- */
|
|
|
|
/**
|
2008-07-31 20:47:41 +02:00
|
|
|
* Creates a packet iterator for encoding.
|
|
|
|
*
|
|
|
|
* @param p_image the image being encoded.
|
|
|
|
* @param p_cp the coding parameters.
|
|
|
|
* @param p_tile_no index of the tile being encoded.
|
|
|
|
* @param p_t2_mode the type of pass for generating the packet iterator
|
|
|
|
* @return a list of packet iterator that points to the first packet of the tile (not true).
|
2005-12-02 14:34:15 +01:00
|
|
|
*/
|
2008-07-31 20:47:41 +02:00
|
|
|
opj_pi_iterator_t *pi_initialise_encode(const struct opj_image *image,struct opj_cp *cp, OPJ_UINT32 tileno,J2K_T2_MODE t2_mode);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Updates the encoding parameters of the codec.
|
|
|
|
*
|
|
|
|
* @param p_image the image being encoded.
|
|
|
|
* @param p_cp the coding parameters.
|
|
|
|
* @param p_tile_no index of the tile being encoded.
|
|
|
|
*/
|
|
|
|
void pi_update_encoding_parameters(
|
|
|
|
const struct opj_image *p_image,
|
|
|
|
struct opj_cp *p_cp,
|
|
|
|
OPJ_UINT32 p_tile_no
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
|
2007-03-20 18:15:18 +01:00
|
|
|
/**
|
|
|
|
Modify the packet iterator for enabling tile part generation
|
|
|
|
@param pi Handle to the packet iterator generated in pi_initialise_encode
|
|
|
|
@param cp Coding parameters
|
|
|
|
@param tileno Number that identifies the tile for which to list the packets
|
|
|
|
@param tpnum Tile part number of the current tile
|
|
|
|
@param tppos The position of the tile part flag in the progression order
|
|
|
|
*/
|
2008-07-31 20:47:41 +02:00
|
|
|
void pi_create_encode( opj_pi_iterator_t *pi, struct opj_cp *cp,OPJ_UINT32 tileno, OPJ_UINT32 pino,OPJ_UINT32 tpnum, OPJ_INT32 tppos, J2K_T2_MODE t2_mode);
|
|
|
|
|
|
|
|
|
2007-03-20 18:15:18 +01:00
|
|
|
/**
|
|
|
|
Create a packet iterator for Decoder
|
|
|
|
@param image Raw image for which the packets will be listed
|
|
|
|
@param cp Coding parameters
|
|
|
|
@param tileno Number that identifies the tile for which to list the packets
|
|
|
|
@return Returns a packet iterator that points to the first packet of the tile
|
|
|
|
@see pi_destroy
|
|
|
|
*/
|
2008-07-31 20:47:41 +02:00
|
|
|
opj_pi_iterator_t *pi_create_decode(struct opj_image * image, struct opj_cp * cp, OPJ_UINT32 tileno);
|
|
|
|
|
|
|
|
|
2005-12-02 14:34:15 +01:00
|
|
|
|
|
|
|
/**
|
2008-07-31 20:47:41 +02:00
|
|
|
* Destroys a packet iterator array.
|
|
|
|
*
|
|
|
|
* @param p_pi the packet iterator array to destroy.
|
|
|
|
* @param p_nb_elements the number of elements in the array.
|
|
|
|
*/
|
|
|
|
void pi_destroy(
|
|
|
|
opj_pi_iterator_t *p_pi,
|
|
|
|
OPJ_UINT32 p_nb_elements);
|
2005-12-02 14:34:15 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
Modify the packet iterator to point to the next packet
|
|
|
|
@param pi Packet iterator to modify
|
|
|
|
@return Returns false if pi pointed to the last packet or else returns true
|
|
|
|
*/
|
|
|
|
bool pi_next(opj_pi_iterator_t * pi);
|
2008-07-31 20:47:41 +02:00
|
|
|
|
|
|
|
|
2005-12-02 14:34:15 +01:00
|
|
|
/* ----------------------------------------------------------------------- */
|
|
|
|
/*@}*/
|
|
|
|
|
|
|
|
/*@}*/
|
2003-11-27 11:10:17 +01:00
|
|
|
|
2005-12-02 14:34:15 +01:00
|
|
|
#endif /* __PI_H */
|