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