]> Creatis software - gdcm.git/blob - src/gdcmopenjpeg/libopenjpeg/bio.c
3dfd7cf7ac58969c379c5283cd386960db99bc7d
[gdcm.git] / src / gdcmopenjpeg / libopenjpeg / bio.c
1 /*
2  * Copyright (c) 2001-2003, David Janssens
3  * Copyright (c) 2002-2003, Yannick Verschueren
4  * Copyright (c) 2003-2005, Francois Devaux and Antonin Descampe
5  * Copyright (c) 2005, HervĂ© Drolon, FreeImage Team
6  * Copyright (c) 2002-2005, Communications and remote sensing Laboratory, Universite catholique de Louvain, Belgium
7  * All rights reserved.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions
11  * are met:
12  * 1. Redistributions of source code must retain the above copyright
13  *    notice, this list of conditions and the following disclaimer.
14  * 2. Redistributions in binary form must reproduce the above copyright
15  *    notice, this list of conditions and the following disclaimer in the
16  *    documentation and/or other materials provided with the distribution.
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS `AS IS'
19  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21  * ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
22  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28  * POSSIBILITY OF SUCH DAMAGE.
29  */
30
31 #include "opj_includes.h"
32
33 /** @defgroup BIO BIO - Individual bit input-output stream */
34 /*@{*/
35
36 /** @name Local static functions */
37 /*@{*/
38
39 /**
40 Write a bit
41 @param bio BIO handle
42 @param b Bit to write (0 or 1)
43 */
44 static void bio_putbit(opj_bio_t *bio, int b);
45 /**
46 Read a bit
47 @param bio BIO handle
48 @return Returns the read bit
49 */
50 static int bio_getbit(opj_bio_t *bio);
51 /**
52 Write a byte
53 @param bio BIO handle
54 @return Returns 0 if successful, returns 1 otherwise
55 */
56 static int bio_byteout(opj_bio_t *bio);
57 /**
58 Read a byte
59 @param bio BIO handle
60 @return Returns 0 if successful, returns 1 otherwise
61 */
62 static int bio_bytein(opj_bio_t *bio);
63
64 /*@}*/
65
66 /*@}*/
67
68 /* 
69 ==========================================================
70    local functions
71 ==========================================================
72 */
73
74 static int bio_byteout(opj_bio_t *bio) {
75   bio->buf = (bio->buf << 8) & 0xffff;
76   bio->ct = bio->buf == 0xff00 ? 7 : 8;
77   if (bio->bp >= bio->end) {
78     return 1;
79   }
80   *bio->bp++ = bio->buf >> 8;
81   return 0;
82 }
83
84 static int bio_bytein(opj_bio_t *bio) {
85   bio->buf = (bio->buf << 8) & 0xffff;
86   bio->ct = bio->buf == 0xff00 ? 7 : 8;
87   if (bio->bp >= bio->end) {
88     return 1;
89   }
90   bio->buf |= *bio->bp++;
91   return 0;
92 }
93
94 static void bio_putbit(opj_bio_t *bio, int b) {
95   if (bio->ct == 0) {
96     bio_byteout(bio);
97   }
98   bio->ct--;
99   bio->buf |= b << bio->ct;
100 }
101
102 static int bio_getbit(opj_bio_t *bio) {
103   if (bio->ct == 0) {
104     bio_bytein(bio);
105   }
106   bio->ct--;
107   return (bio->buf >> bio->ct) & 1;
108 }
109
110 /* 
111 ==========================================================
112    Bit Input/Output interface
113 ==========================================================
114 */
115
116 opj_bio_t* bio_create() {
117   opj_bio_t *bio = (opj_bio_t*)opj_malloc(sizeof(opj_bio_t));
118   return bio;
119 }
120
121 void bio_destroy(opj_bio_t *bio) {
122   if(bio) {
123     opj_free(bio);
124   }
125 }
126
127 int bio_numbytes(opj_bio_t *bio) {
128   return (bio->bp - bio->start);
129 }
130
131 void bio_init_enc(opj_bio_t *bio, unsigned char *bp, int len) {
132   bio->start = bp;
133   bio->end = bp + len;
134   bio->bp = bp;
135   bio->buf = 0;
136   bio->ct = 8;
137 }
138
139 void bio_init_dec(opj_bio_t *bio, unsigned char *bp, int len) {
140   bio->start = bp;
141   bio->end = bp + len;
142   bio->bp = bp;
143   bio->buf = 0;
144   bio->ct = 0;
145 }
146
147 void bio_write(opj_bio_t *bio, int v, int n) {
148   int i;
149   for (i = n - 1; i >= 0; i--) {
150     bio_putbit(bio, (v >> i) & 1);
151   }
152 }
153
154 int bio_read(opj_bio_t *bio, int n) {
155   int i, v;
156   v = 0;
157   for (i = n - 1; i >= 0; i--) {
158     v += bio_getbit(bio) << i;
159   }
160   return v;
161 }
162
163 int bio_flush(opj_bio_t *bio) {
164   bio->ct = 0;
165   if (bio_byteout(bio)) {
166     return 1;
167   }
168   if (bio->ct == 7) {
169     bio->ct = 0;
170     if (bio_byteout(bio)) {
171       return 1;
172     }
173   }
174   return 0;
175 }
176
177 int bio_inalign(opj_bio_t *bio) {
178   bio->ct = 0;
179   if ((bio->buf & 0xff) == 0xff) {
180     if (bio_bytein(bio)) {
181       return 1;
182     }
183     bio->ct = 0;
184   }
185   return 0;
186 }