@param bio BIO handle
@param b Bit to write (0 or 1)
*/
-static void bio_putbit(opj_bio_t *bio, unsigned int b);
+static void opj_bio_putbit(opj_bio_t *bio, OPJ_UINT32 b);
/**
Read a bit
@param bio BIO handle
@return Returns the read bit
*/
-static int bio_getbit(opj_bio_t *bio);
+static OPJ_UINT32 opj_bio_getbit(opj_bio_t *bio);
/**
Write a byte
@param bio BIO handle
-@return Returns 0 if successful, returns 1 otherwise
+@return Returns OPJ_TRUE if successful, returns OPJ_FALSE otherwise
*/
-static int bio_byteout(opj_bio_t *bio);
+static opj_bool opj_bio_byteout(opj_bio_t *bio);
/**
Read a byte
@param bio BIO handle
-@return Returns 0 if successful, returns 1 otherwise
+@return Returns OPJ_TRUE if successful, returns OPJ_FALSE otherwise
*/
-static int bio_bytein(opj_bio_t *bio);
+static opj_bool opj_bio_bytein(opj_bio_t *bio);
/*@}*/
==========================================================
*/
-static int bio_byteout(opj_bio_t *bio) {
+opj_bool opj_bio_byteout(opj_bio_t *bio) {
bio->buf = (bio->buf << 8) & 0xffff;
bio->ct = bio->buf == 0xff00 ? 7 : 8;
if (bio->bp >= bio->end) {
- return 1;
+ return OPJ_FALSE;
}
- *bio->bp++ = (unsigned char)(bio->buf >> 8);
- return 0;
+ *bio->bp++ = (unsigned char)(bio->buf >> 8); /* TODO MSD: check this conversion */
+ return OPJ_TRUE;
}
-static int bio_bytein(opj_bio_t *bio) {
+opj_bool opj_bio_bytein(opj_bio_t *bio) {
bio->buf = (bio->buf << 8) & 0xffff;
bio->ct = bio->buf == 0xff00 ? 7 : 8;
if (bio->bp >= bio->end) {
- return 1;
+ return OPJ_FALSE;
}
bio->buf |= *bio->bp++;
- return 0;
+ return OPJ_TRUE;
}
-static void bio_putbit(opj_bio_t *bio, unsigned int b) {
+void opj_bio_putbit(opj_bio_t *bio, OPJ_UINT32 b) {
if (bio->ct == 0) {
- bio_byteout(bio);
+ opj_bio_byteout(bio); // TODO_MSD: check this line
}
bio->ct--;
bio->buf |= b << bio->ct;
}
-static int bio_getbit(opj_bio_t *bio) {
+OPJ_UINT32 opj_bio_getbit(opj_bio_t *bio) {
if (bio->ct == 0) {
- bio_bytein(bio);
+ opj_bio_bytein(bio); // TODO_MSD: check this line
}
bio->ct--;
return (bio->buf >> bio->ct) & 1;
void bio_write(opj_bio_t *bio, int v, int n) {
int i;
for (i = n - 1; i >= 0; i--) {
- bio_putbit(bio, (v >> i) & 1);
+ opj_bio_putbit(bio, (v >> i) & 1);
}
}
int i, v;
v = 0;
for (i = n - 1; i >= 0; i--) {
- v += bio_getbit(bio) << i;
+ v += opj_bio_getbit(bio) << i;
}
return v;
}
int bio_flush(opj_bio_t *bio) {
bio->ct = 0;
- if (bio_byteout(bio)) {
+ if (! opj_bio_byteout(bio)) {
return 1;
}
if (bio->ct == 7) {
bio->ct = 0;
- if (bio_byteout(bio)) {
+ if (! opj_bio_byteout(bio)) {
return 1;
}
}
int bio_inalign(opj_bio_t *bio) {
bio->ct = 0;
if ((bio->buf & 0xff) == 0xff) {
- if (bio_bytein(bio)) {
+ if (! opj_bio_bytein(bio)) {
return 1;
}
bio->ct = 0;