==========================================================
*/
-opj_bio_t* bio_create(void) {
+opj_bio_t* opj_bio_create(void) {
opj_bio_t *bio = (opj_bio_t*)opj_malloc(sizeof(opj_bio_t));
return bio;
}
-void bio_destroy(opj_bio_t *bio) {
+void opj_bio_destroy(opj_bio_t *bio) {
if(bio) {
opj_free(bio);
}
Create a new BIO handle
@return Returns a new BIO handle if successful, returns NULL otherwise
*/
-opj_bio_t* bio_create(void);
+opj_bio_t* opj_bio_create(void);
/**
Destroy a previously created BIO handle
@param bio BIO handle to destroy
*/
-void bio_destroy(opj_bio_t *bio);
+void opj_bio_destroy(opj_bio_t *bio);
/**
Number of bytes written.
@param bio BIO handle
}
}
- bio = bio_create();
+ bio = opj_bio_create();
bio_init_enc(bio, c, length);
bio_write(bio, 1, 1); /* Empty header bit */
}
if (bio_flush(bio)) {
- bio_destroy(bio);
+ opj_bio_destroy(bio);
return OPJ_FALSE; /* modified to eliminate longjmp !! */
}
c += l_nb_bytes;
length -= l_nb_bytes;
- bio_destroy(bio);
+ opj_bio_destroy(bio);
/* <EPH 0xff92> */
if (tcp->csty & J2K_CP_CSTY_EPH) {
step 2: Return to codestream for decoding
*/
- l_bio = bio_create();
+ l_bio = opj_bio_create();
if (! l_bio) {
return OPJ_FALSE;
}
if (!l_present) {
bio_inalign(l_bio);
l_header_data += bio_numbytes(l_bio);
- bio_destroy(l_bio);
+ opj_bio_destroy(l_bio);
/* EPH markers */
if (p_tcp->csty & J2K_CP_CSTY_EPH) {
if (!l_cblk->numsegs) {
if (! opj_t2_init_seg(l_cblk, l_segno, p_tcp->tccps[p_pi->compno].cblksty, 1)) {
- bio_destroy(l_bio);
+ opj_bio_destroy(l_bio);
return OPJ_FALSE;
}
}
if (l_cblk->segs[l_segno].numpasses == l_cblk->segs[l_segno].maxpasses) {
++l_segno;
if (! opj_t2_init_seg(l_cblk, l_segno, p_tcp->tccps[p_pi->compno].cblksty, 0)) {
- bio_destroy(l_bio);
+ opj_bio_destroy(l_bio);
return OPJ_FALSE;
}
}
++l_segno;
if (! opj_t2_init_seg(l_cblk, l_segno, p_tcp->tccps[p_pi->compno].cblksty, 0)) {
- bio_destroy(l_bio);
+ opj_bio_destroy(l_bio);
return OPJ_FALSE;
}
}
}
if (bio_inalign(l_bio)) {
- bio_destroy(l_bio);
+ opj_bio_destroy(l_bio);
return OPJ_FALSE;
}
l_header_data += bio_numbytes(l_bio);
- bio_destroy(l_bio);
+ opj_bio_destroy(l_bio);
/* EPH markers */
if (p_tcp->csty & J2K_CP_CSTY_EPH) {