remove deprecated v1 style function t1_destroy; rename t1_destroy_v2 to opj_t1_destroy
remove deprecated v1 style function t1_decode_cblks; rename t1_decode_cblks_v2 to opj_t1_decode_cblks remove deprecated v1 style function t1_encode_cblks; rename t1_encode_cblks_v2 to opj_t1_encode_cblks remove deprecated v1 style function t1_create; rename t1_create_v2 to opj_t1_create
This commit is contained in:
parent
859ce39666
commit
3b953cc763
163
libopenjpeg/t1.c
163
libopenjpeg/t1.c
|
@ -1482,35 +1482,6 @@ static void t1_decode_cblk(
|
|||
|
||||
/* ----------------------------------------------------------------------- */
|
||||
|
||||
opj_t1_t* t1_create(opj_common_ptr cinfo) {
|
||||
opj_t1_t *t1 = (opj_t1_t*) opj_malloc(sizeof(opj_t1_t));
|
||||
if(!t1)
|
||||
return NULL;
|
||||
|
||||
t1->cinfo = cinfo;
|
||||
/* create MQC and RAW handles */
|
||||
t1->mqc = mqc_create();
|
||||
t1->raw = raw_create();
|
||||
|
||||
t1->data=NULL;
|
||||
t1->flags=NULL;
|
||||
t1->datasize=0;
|
||||
t1->flagssize=0;
|
||||
|
||||
return t1;
|
||||
}
|
||||
|
||||
void t1_destroy(opj_t1_t *t1) {
|
||||
if(t1) {
|
||||
/* destroy MQC and RAW handles */
|
||||
mqc_destroy(t1->mqc);
|
||||
raw_destroy(t1->raw);
|
||||
opj_aligned_free(t1->data);
|
||||
opj_aligned_free(t1->flags);
|
||||
opj_free(t1);
|
||||
}
|
||||
}
|
||||
|
||||
void t1_encode_cblks(
|
||||
opj_t1_t *t1,
|
||||
opj_tcd_tile_t *tile,
|
||||
|
@ -1606,96 +1577,6 @@ void t1_encode_cblks(
|
|||
} /* compno */
|
||||
}
|
||||
|
||||
void t1_decode_cblks(
|
||||
opj_t1_t* t1,
|
||||
opj_tcd_tilecomp_t* tilec,
|
||||
opj_tccp_t* tccp)
|
||||
{
|
||||
int resno, bandno, precno, cblkno;
|
||||
|
||||
int tile_w = tilec->x1 - tilec->x0;
|
||||
|
||||
for (resno = 0; resno < tilec->numresolutions; ++resno) {
|
||||
opj_tcd_resolution_t* res = &tilec->resolutions[resno];
|
||||
|
||||
for (bandno = 0; bandno < res->numbands; ++bandno) {
|
||||
opj_tcd_band_t* restrict band = &res->bands[bandno];
|
||||
|
||||
for (precno = 0; precno < res->pw * res->ph; ++precno) {
|
||||
opj_tcd_precinct_t* precinct = &band->precincts[precno];
|
||||
|
||||
for (cblkno = 0; cblkno < precinct->cw * precinct->ch; ++cblkno) {
|
||||
opj_tcd_cblk_dec_t* cblk = &precinct->cblks.dec[cblkno];
|
||||
int* restrict datap;
|
||||
int cblk_w, cblk_h;
|
||||
int x, y;
|
||||
int i, j;
|
||||
|
||||
t1_decode_cblk(
|
||||
t1,
|
||||
cblk,
|
||||
band->bandno,
|
||||
tccp->roishift,
|
||||
tccp->cblksty);
|
||||
|
||||
x = cblk->x0 - band->x0;
|
||||
y = cblk->y0 - band->y0;
|
||||
if (band->bandno & 1) {
|
||||
opj_tcd_resolution_t* pres = &tilec->resolutions[resno - 1];
|
||||
x += pres->x1 - pres->x0;
|
||||
}
|
||||
if (band->bandno & 2) {
|
||||
opj_tcd_resolution_t* pres = &tilec->resolutions[resno - 1];
|
||||
y += pres->y1 - pres->y0;
|
||||
}
|
||||
|
||||
datap=t1->data;
|
||||
cblk_w = t1->w;
|
||||
cblk_h = t1->h;
|
||||
|
||||
if (tccp->roishift) {
|
||||
int thresh = 1 << tccp->roishift;
|
||||
for (j = 0; j < cblk_h; ++j) {
|
||||
for (i = 0; i < cblk_w; ++i) {
|
||||
int val = datap[(j * cblk_w) + i];
|
||||
int mag = abs(val);
|
||||
if (mag >= thresh) {
|
||||
mag >>= tccp->roishift;
|
||||
datap[(j * cblk_w) + i] = val < 0 ? -mag : mag;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (tccp->qmfbid == 1) {
|
||||
int* restrict tiledp = &tilec->data[(y * tile_w) + x];
|
||||
for (j = 0; j < cblk_h; ++j) {
|
||||
for (i = 0; i < cblk_w; ++i) {
|
||||
int tmp = datap[(j * cblk_w) + i];
|
||||
((int*)tiledp)[(j * tile_w) + i] = tmp / 2;
|
||||
}
|
||||
}
|
||||
} else { /* if (tccp->qmfbid == 0) */
|
||||
float* restrict tiledp = (float*) &tilec->data[(y * tile_w) + x];
|
||||
for (j = 0; j < cblk_h; ++j) {
|
||||
float* restrict tiledp2 = tiledp;
|
||||
for (i = 0; i < cblk_w; ++i) {
|
||||
float tmp = *datap * band->stepsize;
|
||||
*tiledp2 = tmp;
|
||||
datap++;
|
||||
tiledp2++;
|
||||
}
|
||||
tiledp += tile_w;
|
||||
}
|
||||
}
|
||||
opj_free(cblk->data);
|
||||
opj_free(cblk->segs);
|
||||
} /* cblkno */
|
||||
opj_free(precinct->cblks.dec);
|
||||
} /* precno */
|
||||
} /* bandno */
|
||||
} /* resno */
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
@ -1705,7 +1586,7 @@ void t1_decode_cblks(
|
|||
* and initializes the look-up tables of the Tier-1 coder/decoder
|
||||
* @return a new T1 handle if successful, returns NULL otherwise
|
||||
*/
|
||||
opj_t1_t* t1_create_v2()
|
||||
opj_t1_t* opj_t1_create()
|
||||
{
|
||||
opj_t1_t *l_t1 = 00;
|
||||
|
||||
|
@ -1718,13 +1599,13 @@ opj_t1_t* t1_create_v2()
|
|||
/* create MQC and RAW handles */
|
||||
l_t1->mqc = mqc_create();
|
||||
if (! l_t1->mqc) {
|
||||
t1_destroy(l_t1);
|
||||
opj_t1_destroy(l_t1);
|
||||
return 00;
|
||||
}
|
||||
|
||||
l_t1->raw = raw_create();
|
||||
if (! l_t1->raw) {
|
||||
t1_destroy(l_t1);
|
||||
opj_t1_destroy(l_t1);
|
||||
return 00;
|
||||
}
|
||||
|
||||
|
@ -1737,11 +1618,9 @@ opj_t1_t* t1_create_v2()
|
|||
*
|
||||
* @param p_t1 Tier 1 handle to destroy
|
||||
*/
|
||||
void t1_destroy_v2(opj_t1_t *p_t1)
|
||||
void opj_t1_destroy(opj_t1_t *p_t1)
|
||||
{
|
||||
if
|
||||
(! p_t1)
|
||||
{
|
||||
if (! p_t1) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -1750,25 +1629,24 @@ void t1_destroy_v2(opj_t1_t *p_t1)
|
|||
p_t1->mqc = 00;
|
||||
raw_destroy(p_t1->raw);
|
||||
p_t1->raw = 00;
|
||||
if
|
||||
(p_t1->data)
|
||||
{
|
||||
|
||||
if (p_t1->data) {
|
||||
opj_aligned_free(p_t1->data);
|
||||
p_t1->data = 00;
|
||||
}
|
||||
if
|
||||
(p_t1->flags)
|
||||
{
|
||||
|
||||
if (p_t1->flags) {
|
||||
opj_aligned_free(p_t1->flags);
|
||||
p_t1->flags = 00;
|
||||
}
|
||||
|
||||
opj_free(p_t1);
|
||||
}
|
||||
|
||||
void t1_decode_cblks_v2(
|
||||
opj_t1_t* t1,
|
||||
opj_tcd_tilecomp_v2_t* tilec,
|
||||
opj_tccp_t* tccp)
|
||||
void opj_t1_decode_cblks( opj_t1_t* t1,
|
||||
opj_tcd_tilecomp_v2_t* tilec,
|
||||
opj_tccp_t* tccp
|
||||
)
|
||||
{
|
||||
OPJ_UINT32 resno, bandno, precno, cblkno;
|
||||
OPJ_UINT32 tile_w = tilec->x1 - tilec->x0;
|
||||
|
@ -1924,11 +1802,11 @@ static void t1_decode_cblk_v2(
|
|||
}
|
||||
}
|
||||
|
||||
opj_bool t1_encode_cblks_v2(
|
||||
opj_t1_t *t1,
|
||||
opj_tcd_tile_v2_t *tile,
|
||||
opj_tcp_v2_t *tcp,
|
||||
const OPJ_FLOAT64 * mct_norms)
|
||||
opj_bool opj_t1_encode_cblks( opj_t1_t *t1,
|
||||
opj_tcd_tile_v2_t *tile,
|
||||
opj_tcp_v2_t *tcp,
|
||||
const OPJ_FLOAT64 * mct_norms
|
||||
)
|
||||
{
|
||||
OPJ_UINT32 compno, resno, bandno, precno, cblkno;
|
||||
|
||||
|
@ -1944,6 +1822,7 @@ opj_bool t1_encode_cblks_v2(
|
|||
|
||||
for (bandno = 0; bandno < res->numbands; ++bandno) {
|
||||
opj_tcd_band_v2_t* restrict band = &res->bands[bandno];
|
||||
OPJ_INT32 bandconst = 8192 * 8192 / ((OPJ_INT32) floor(band->stepsize * 8192));
|
||||
|
||||
for (precno = 0; precno < res->pw * res->ph; ++precno) {
|
||||
opj_tcd_precinct_v2_t *prc = &band->precincts[precno];
|
||||
|
@ -1994,7 +1873,7 @@ opj_bool t1_encode_cblks_v2(
|
|||
datap[(j * cblk_w) + i] =
|
||||
fix_mul(
|
||||
tmp,
|
||||
8192 * 8192 / ((OPJ_INT32) floor(band->stepsize * 8192))) >> (11 - T1_NMSEDEC_FRACBITS);
|
||||
bandconst) >> (11 - T1_NMSEDEC_FRACBITS);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -85,14 +85,14 @@ in T1.C are used by some function in TCD.C.
|
|||
|
||||
/* ----------------------------------------------------------------------- */
|
||||
|
||||
typedef short flag_t;
|
||||
typedef OPJ_INT16 flag_t;
|
||||
|
||||
/**
|
||||
Tier-1 coding (coding of code-block coefficients)
|
||||
*/
|
||||
typedef struct opj_t1 {
|
||||
/** codec context */
|
||||
opj_common_ptr cinfo;
|
||||
opj_common_ptr cinfo; // TODO MSD : TO BE REMOVED
|
||||
|
||||
/** MQC component */
|
||||
opj_mqc_t *mqc;
|
||||
|
@ -113,30 +113,17 @@ typedef struct opj_t1 {
|
|||
/** @name Exported functions */
|
||||
/*@{*/
|
||||
/* ----------------------------------------------------------------------- */
|
||||
/**
|
||||
Create a new T1 handle
|
||||
and initialize the look-up tables of the Tier-1 coder/decoder
|
||||
@return Returns a new T1 handle if successful, returns NULL otherwise
|
||||
@see t1_init_luts
|
||||
*/
|
||||
opj_t1_t* t1_create(opj_common_ptr cinfo);
|
||||
/**
|
||||
Destroy a previously created T1 handle
|
||||
@param t1 T1 handle to destroy
|
||||
*/
|
||||
void t1_destroy(opj_t1_t *t1);
|
||||
|
||||
/**
|
||||
Encode the code-blocks of a tile
|
||||
@param t1 T1 handle
|
||||
@param tile The tile to encode
|
||||
@param tcp Tile coding parameters
|
||||
*/
|
||||
void t1_encode_cblks(opj_t1_t *t1, opj_tcd_tile_t *tile, opj_tcp_t *tcp);
|
||||
|
||||
opj_bool t1_encode_cblks_v2(opj_t1_t *t1,
|
||||
struct opj_tcd_tile_v2 *tile,
|
||||
struct opj_tcp_v2 *tcp,
|
||||
const OPJ_FLOAT64 * mct_norms);
|
||||
opj_bool opj_t1_encode_cblks( opj_t1_t *t1,
|
||||
opj_tcd_tile_v2_t *tile,
|
||||
opj_tcp_v2_t *tcp,
|
||||
const OPJ_FLOAT64 * mct_norms);
|
||||
|
||||
/**
|
||||
Decode the code-blocks of a tile
|
||||
|
@ -144,13 +131,9 @@ Decode the code-blocks of a tile
|
|||
@param tilec The tile to decode
|
||||
@param tccp Tile coding parameters
|
||||
*/
|
||||
void t1_decode_cblks(opj_t1_t* t1, opj_tcd_tilecomp_t* tilec, opj_tccp_t* tccp);
|
||||
|
||||
|
||||
void t1_decode_cblks_v2(
|
||||
opj_t1_t* t1,
|
||||
opj_tcd_tilecomp_v2_t* tilec,
|
||||
opj_tccp_t* tccp);
|
||||
void opj_t1_decode_cblks( opj_t1_t* t1,
|
||||
opj_tcd_tilecomp_v2_t* tilec,
|
||||
opj_tccp_t* tccp);
|
||||
|
||||
|
||||
|
||||
|
@ -159,14 +142,14 @@ void t1_decode_cblks_v2(
|
|||
* and initializes the look-up tables of the Tier-1 coder/decoder
|
||||
* @return a new T1 handle if successful, returns NULL otherwise
|
||||
*/
|
||||
opj_t1_t* t1_create_v2();
|
||||
opj_t1_t* opj_t1_create();
|
||||
|
||||
/**
|
||||
* Destroys a previously created T1 handle
|
||||
*
|
||||
* @param p_t1 Tier 1 handle to destroy
|
||||
*/
|
||||
void t1_destroy_v2(opj_t1_t *p_t1);
|
||||
void opj_t1_destroy(opj_t1_t *p_t1);
|
||||
/* ----------------------------------------------------------------------- */
|
||||
/*@}*/
|
||||
|
||||
|
|
|
@ -1480,19 +1480,19 @@ opj_bool opj_tcd_t1_decode ( opj_tcd_v2_t *p_tcd )
|
|||
opj_tccp_t * l_tccp = p_tcd->tcp->tccps;
|
||||
|
||||
|
||||
l_t1 = t1_create_v2();
|
||||
l_t1 = opj_t1_create();
|
||||
if (l_t1 == 00) {
|
||||
return OPJ_FALSE;
|
||||
}
|
||||
|
||||
for (compno = 0; compno < l_tile->numcomps; ++compno) {
|
||||
/* The +3 is headroom required by the vectorized DWT */
|
||||
t1_decode_cblks_v2(l_t1, l_tile_comp, l_tccp);
|
||||
opj_t1_decode_cblks(l_t1, l_tile_comp, l_tccp);
|
||||
++l_tile_comp;
|
||||
++l_tccp;
|
||||
}
|
||||
|
||||
t1_destroy_v2(l_t1);
|
||||
opj_t1_destroy(l_t1);
|
||||
|
||||
return OPJ_TRUE;
|
||||
}
|
||||
|
@ -1907,7 +1907,7 @@ opj_bool opj_tcd_t1_encode ( opj_tcd_v2_t *p_tcd )
|
|||
const OPJ_FLOAT64 * l_mct_norms;
|
||||
opj_tcp_v2_t * l_tcp = p_tcd->tcp;
|
||||
|
||||
l_t1 = t1_create_v2();
|
||||
l_t1 = opj_t1_create();
|
||||
if (l_t1 == 00) {
|
||||
return OPJ_FALSE;
|
||||
}
|
||||
|
@ -1925,12 +1925,12 @@ opj_bool opj_tcd_t1_encode ( opj_tcd_v2_t *p_tcd )
|
|||
l_mct_norms = (const OPJ_FLOAT64 *) (l_tcp->mct_norms);
|
||||
}
|
||||
|
||||
if (! t1_encode_cblks_v2(l_t1, p_tcd->tcd_image->tiles , l_tcp, l_mct_norms)) {
|
||||
t1_destroy_v2(l_t1);
|
||||
if (! opj_t1_encode_cblks(l_t1, p_tcd->tcd_image->tiles , l_tcp, l_mct_norms)) {
|
||||
opj_t1_destroy(l_t1);
|
||||
return OPJ_FALSE;
|
||||
}
|
||||
|
||||
t1_destroy_v2(l_t1);
|
||||
opj_t1_destroy(l_t1);
|
||||
|
||||
return OPJ_TRUE;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue