[trunk] Remove remaining conversion issues in mqc.c
[openjpeg.git] / src / lib / openjp2 / mqc.c
1 /*
2  * Copyright (c) 2002-2007, Communications and Remote Sensing Laboratory, Universite catholique de Louvain (UCL), Belgium
3  * Copyright (c) 2002-2007, Professor Benoit Macq
4  * Copyright (c) 2001-2003, David Janssens
5  * Copyright (c) 2002-2003, Yannick Verschueren
6  * Copyright (c) 2003-2007, Francois-Olivier Devaux and Antonin Descampe
7  * Copyright (c) 2005, Herve Drolon, FreeImage Team
8  * Copyright (c) 2008, Jerome Fimes, Communications & Systemes <jerome.fimes@c-s.fr>
9  * All rights reserved.
10  *
11  * Redistribution and use in source and binary forms, with or without
12  * modification, are permitted provided that the following conditions
13  * are met:
14  * 1. Redistributions of source code must retain the above copyright
15  *    notice, this list of conditions and the following disclaimer.
16  * 2. Redistributions in binary form must reproduce the above copyright
17  *    notice, this list of conditions and the following disclaimer in the
18  *    documentation and/or other materials provided with the distribution.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS `AS IS'
21  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23  * ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
24  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30  * POSSIBILITY OF SUCH DAMAGE.
31  */
32
33 #include "opj_includes.h"
34
35 /** @defgroup MQC MQC - Implementation of an MQ-Coder */
36 /*@{*/
37
38 /** @name Local static functions */
39 /*@{*/
40
41 /**
42 Output a byte, doing bit-stuffing if necessary.
43 After a 0xff byte, the next byte must be smaller than 0x90.
44 @param mqc MQC handle
45 */
46 static void opj_mqc_byteout(opj_mqc_t *mqc);
47 /**
48 Renormalize mqc->a and mqc->c while encoding, so that mqc->a stays between 0x8000 and 0x10000
49 @param mqc MQC handle
50 */
51 static void opj_mqc_renorme(opj_mqc_t *mqc);
52 /**
53 Encode the most probable symbol
54 @param mqc MQC handle
55 */
56 static void opj_mqc_codemps(opj_mqc_t *mqc);
57 /**
58 Encode the most least symbol
59 @param mqc MQC handle
60 */
61 static void opj_mqc_codelps(opj_mqc_t *mqc);
62 /**
63 Fill mqc->c with 1's for flushing
64 @param mqc MQC handle
65 */
66 static void opj_mqc_setbits(opj_mqc_t *mqc);
67 /**
68 FIXME DOC
69 @param mqc MQC handle
70 @return 
71 */
72 static INLINE OPJ_INT32 opj_mqc_mpsexchange(opj_mqc_t *const mqc);
73 /**
74 FIXME DOC
75 @param mqc MQC handle
76 @return 
77 */
78 static INLINE OPJ_INT32 opj_mqc_lpsexchange(opj_mqc_t *const mqc);
79 /**
80 Input a byte
81 @param mqc MQC handle
82 */
83 static INLINE void opj_mqc_bytein(opj_mqc_t *const mqc);
84 /**
85 Renormalize mqc->a and mqc->c while decoding
86 @param mqc MQC handle
87 */
88 static INLINE void opj_mqc_renormd(opj_mqc_t *const mqc);
89 /*@}*/
90
91 /*@}*/
92
93 /* <summary> */
94 /* This array defines all the possible states for a context. */
95 /* </summary> */
96 static opj_mqc_state_t mqc_states[47 * 2] = {
97         {0x5601, 0, &mqc_states[2], &mqc_states[3]},
98         {0x5601, 1, &mqc_states[3], &mqc_states[2]},
99         {0x3401, 0, &mqc_states[4], &mqc_states[12]},
100         {0x3401, 1, &mqc_states[5], &mqc_states[13]},
101         {0x1801, 0, &mqc_states[6], &mqc_states[18]},
102         {0x1801, 1, &mqc_states[7], &mqc_states[19]},
103         {0x0ac1, 0, &mqc_states[8], &mqc_states[24]},
104         {0x0ac1, 1, &mqc_states[9], &mqc_states[25]},
105         {0x0521, 0, &mqc_states[10], &mqc_states[58]},
106         {0x0521, 1, &mqc_states[11], &mqc_states[59]},
107         {0x0221, 0, &mqc_states[76], &mqc_states[66]},
108         {0x0221, 1, &mqc_states[77], &mqc_states[67]},
109         {0x5601, 0, &mqc_states[14], &mqc_states[13]},
110         {0x5601, 1, &mqc_states[15], &mqc_states[12]},
111         {0x5401, 0, &mqc_states[16], &mqc_states[28]},
112         {0x5401, 1, &mqc_states[17], &mqc_states[29]},
113         {0x4801, 0, &mqc_states[18], &mqc_states[28]},
114         {0x4801, 1, &mqc_states[19], &mqc_states[29]},
115         {0x3801, 0, &mqc_states[20], &mqc_states[28]},
116         {0x3801, 1, &mqc_states[21], &mqc_states[29]},
117         {0x3001, 0, &mqc_states[22], &mqc_states[34]},
118         {0x3001, 1, &mqc_states[23], &mqc_states[35]},
119         {0x2401, 0, &mqc_states[24], &mqc_states[36]},
120         {0x2401, 1, &mqc_states[25], &mqc_states[37]},
121         {0x1c01, 0, &mqc_states[26], &mqc_states[40]},
122         {0x1c01, 1, &mqc_states[27], &mqc_states[41]},
123         {0x1601, 0, &mqc_states[58], &mqc_states[42]},
124         {0x1601, 1, &mqc_states[59], &mqc_states[43]},
125         {0x5601, 0, &mqc_states[30], &mqc_states[29]},
126         {0x5601, 1, &mqc_states[31], &mqc_states[28]},
127         {0x5401, 0, &mqc_states[32], &mqc_states[28]},
128         {0x5401, 1, &mqc_states[33], &mqc_states[29]},
129         {0x5101, 0, &mqc_states[34], &mqc_states[30]},
130         {0x5101, 1, &mqc_states[35], &mqc_states[31]},
131         {0x4801, 0, &mqc_states[36], &mqc_states[32]},
132         {0x4801, 1, &mqc_states[37], &mqc_states[33]},
133         {0x3801, 0, &mqc_states[38], &mqc_states[34]},
134         {0x3801, 1, &mqc_states[39], &mqc_states[35]},
135         {0x3401, 0, &mqc_states[40], &mqc_states[36]},
136         {0x3401, 1, &mqc_states[41], &mqc_states[37]},
137         {0x3001, 0, &mqc_states[42], &mqc_states[38]},
138         {0x3001, 1, &mqc_states[43], &mqc_states[39]},
139         {0x2801, 0, &mqc_states[44], &mqc_states[38]},
140         {0x2801, 1, &mqc_states[45], &mqc_states[39]},
141         {0x2401, 0, &mqc_states[46], &mqc_states[40]},
142         {0x2401, 1, &mqc_states[47], &mqc_states[41]},
143         {0x2201, 0, &mqc_states[48], &mqc_states[42]},
144         {0x2201, 1, &mqc_states[49], &mqc_states[43]},
145         {0x1c01, 0, &mqc_states[50], &mqc_states[44]},
146         {0x1c01, 1, &mqc_states[51], &mqc_states[45]},
147         {0x1801, 0, &mqc_states[52], &mqc_states[46]},
148         {0x1801, 1, &mqc_states[53], &mqc_states[47]},
149         {0x1601, 0, &mqc_states[54], &mqc_states[48]},
150         {0x1601, 1, &mqc_states[55], &mqc_states[49]},
151         {0x1401, 0, &mqc_states[56], &mqc_states[50]},
152         {0x1401, 1, &mqc_states[57], &mqc_states[51]},
153         {0x1201, 0, &mqc_states[58], &mqc_states[52]},
154         {0x1201, 1, &mqc_states[59], &mqc_states[53]},
155         {0x1101, 0, &mqc_states[60], &mqc_states[54]},
156         {0x1101, 1, &mqc_states[61], &mqc_states[55]},
157         {0x0ac1, 0, &mqc_states[62], &mqc_states[56]},
158         {0x0ac1, 1, &mqc_states[63], &mqc_states[57]},
159         {0x09c1, 0, &mqc_states[64], &mqc_states[58]},
160         {0x09c1, 1, &mqc_states[65], &mqc_states[59]},
161         {0x08a1, 0, &mqc_states[66], &mqc_states[60]},
162         {0x08a1, 1, &mqc_states[67], &mqc_states[61]},
163         {0x0521, 0, &mqc_states[68], &mqc_states[62]},
164         {0x0521, 1, &mqc_states[69], &mqc_states[63]},
165         {0x0441, 0, &mqc_states[70], &mqc_states[64]},
166         {0x0441, 1, &mqc_states[71], &mqc_states[65]},
167         {0x02a1, 0, &mqc_states[72], &mqc_states[66]},
168         {0x02a1, 1, &mqc_states[73], &mqc_states[67]},
169         {0x0221, 0, &mqc_states[74], &mqc_states[68]},
170         {0x0221, 1, &mqc_states[75], &mqc_states[69]},
171         {0x0141, 0, &mqc_states[76], &mqc_states[70]},
172         {0x0141, 1, &mqc_states[77], &mqc_states[71]},
173         {0x0111, 0, &mqc_states[78], &mqc_states[72]},
174         {0x0111, 1, &mqc_states[79], &mqc_states[73]},
175         {0x0085, 0, &mqc_states[80], &mqc_states[74]},
176         {0x0085, 1, &mqc_states[81], &mqc_states[75]},
177         {0x0049, 0, &mqc_states[82], &mqc_states[76]},
178         {0x0049, 1, &mqc_states[83], &mqc_states[77]},
179         {0x0025, 0, &mqc_states[84], &mqc_states[78]},
180         {0x0025, 1, &mqc_states[85], &mqc_states[79]},
181         {0x0015, 0, &mqc_states[86], &mqc_states[80]},
182         {0x0015, 1, &mqc_states[87], &mqc_states[81]},
183         {0x0009, 0, &mqc_states[88], &mqc_states[82]},
184         {0x0009, 1, &mqc_states[89], &mqc_states[83]},
185         {0x0005, 0, &mqc_states[90], &mqc_states[84]},
186         {0x0005, 1, &mqc_states[91], &mqc_states[85]},
187         {0x0001, 0, &mqc_states[90], &mqc_states[86]},
188         {0x0001, 1, &mqc_states[91], &mqc_states[87]},
189         {0x5601, 0, &mqc_states[92], &mqc_states[92]},
190         {0x5601, 1, &mqc_states[93], &mqc_states[93]},
191 };
192
193 /* 
194 ==========================================================
195    local functions
196 ==========================================================
197 */
198
199 void opj_mqc_byteout(opj_mqc_t *mqc) {
200         if (*mqc->bp == 0xff) {
201                 mqc->bp++;
202                 *mqc->bp = (OPJ_BYTE)(mqc->c >> 20);
203                 mqc->c &= 0xfffff;
204                 mqc->ct = 7;
205         } else {
206                 if ((mqc->c & 0x8000000) == 0) {        /* ((mqc->c&0x8000000)==0) CHANGE */
207                         mqc->bp++;
208                         *mqc->bp = (OPJ_BYTE)(mqc->c >> 19);
209                         mqc->c &= 0x7ffff;
210                         mqc->ct = 8;
211                 } else {
212                         (*mqc->bp)++;
213                         if (*mqc->bp == 0xff) {
214                                 mqc->c &= 0x7ffffff;
215                                 mqc->bp++;
216                                 *mqc->bp = (OPJ_BYTE)(mqc->c >> 20);
217                                 mqc->c &= 0xfffff;
218                                 mqc->ct = 7;
219                         } else {
220                                 mqc->bp++;
221                                 *mqc->bp = (OPJ_BYTE)(mqc->c >> 19);
222                                 mqc->c &= 0x7ffff;
223                                 mqc->ct = 8;
224                         }
225                 }
226         }
227 }
228
229 void opj_mqc_renorme(opj_mqc_t *mqc) {
230         do {
231                 mqc->a <<= 1;
232                 mqc->c <<= 1;
233                 mqc->ct--;
234                 if (mqc->ct == 0) {
235                         opj_mqc_byteout(mqc);
236                 }
237         } while ((mqc->a & 0x8000) == 0);
238 }
239
240 void opj_mqc_codemps(opj_mqc_t *mqc) {
241         mqc->a -= (*mqc->curctx)->qeval;
242         if ((mqc->a & 0x8000) == 0) {
243                 if (mqc->a < (*mqc->curctx)->qeval) {
244                         mqc->a = (*mqc->curctx)->qeval;
245                 } else {
246                         mqc->c += (*mqc->curctx)->qeval;
247                 }
248                 *mqc->curctx = (*mqc->curctx)->nmps;
249                 opj_mqc_renorme(mqc);
250         } else {
251                 mqc->c += (*mqc->curctx)->qeval;
252         }
253 }
254
255 void opj_mqc_codelps(opj_mqc_t *mqc) {
256         mqc->a -= (*mqc->curctx)->qeval;
257         if (mqc->a < (*mqc->curctx)->qeval) {
258                 mqc->c += (*mqc->curctx)->qeval;
259         } else {
260                 mqc->a = (*mqc->curctx)->qeval;
261         }
262         *mqc->curctx = (*mqc->curctx)->nlps;
263         opj_mqc_renorme(mqc);
264 }
265
266 void opj_mqc_setbits(opj_mqc_t *mqc) {
267         OPJ_UINT32 tempc = mqc->c + mqc->a;
268         mqc->c |= 0xffff;
269         if (mqc->c >= tempc) {
270                 mqc->c -= 0x8000;
271         }
272 }
273
274 static INLINE OPJ_INT32 opj_mqc_mpsexchange(opj_mqc_t *const mqc) {
275         OPJ_INT32 d;
276         if (mqc->a < (*mqc->curctx)->qeval) {
277                 d = 1 - (*mqc->curctx)->mps;
278                 *mqc->curctx = (*mqc->curctx)->nlps;
279         } else {
280                 d = (*mqc->curctx)->mps;
281                 *mqc->curctx = (*mqc->curctx)->nmps;
282         }
283         
284         return d;
285 }
286
287 static INLINE OPJ_INT32 opj_mqc_lpsexchange(opj_mqc_t *const mqc) {
288         OPJ_INT32 d;
289         if (mqc->a < (*mqc->curctx)->qeval) {
290                 mqc->a = (*mqc->curctx)->qeval;
291                 d = (*mqc->curctx)->mps;
292                 *mqc->curctx = (*mqc->curctx)->nmps;
293         } else {
294                 mqc->a = (*mqc->curctx)->qeval;
295                 d = 1 - (*mqc->curctx)->mps;
296                 *mqc->curctx = (*mqc->curctx)->nlps;
297         }
298         
299         return d;
300 }
301
302 #ifdef MQC_PERF_OPT
303 static INLINE void opj_mqc_bytein(opj_mqc_t *const mqc) {
304         unsigned int i = *((unsigned int *) mqc->bp);
305         mqc->c += i & 0xffff00;
306         mqc->ct = i & 0x0f;
307         mqc->bp += (i >> 2) & 0x04;
308 }
309 #else
310 static void opj_mqc_bytein(opj_mqc_t *const mqc) {
311         if (mqc->bp != mqc->end) {
312                 OPJ_UINT32 c;
313                 if (mqc->bp + 1 != mqc->end) {
314                         c = *(mqc->bp + 1);
315                 } else {
316                         c = 0xff;
317                 }
318                 if (*mqc->bp == 0xff) {
319                         if (c > 0x8f) {
320                                 mqc->c += 0xff00;
321                                 mqc->ct = 8;
322                         } else {
323                                 mqc->bp++;
324                                 mqc->c += c << 9;
325                                 mqc->ct = 7;
326                         }
327                 } else {
328                         mqc->bp++;
329                         mqc->c += c << 8;
330                         mqc->ct = 8;
331                 }
332         } else {
333                 mqc->c += 0xff00;
334                 mqc->ct = 8;
335         }
336 }
337 #endif
338
339 static INLINE void opj_mqc_renormd(opj_mqc_t *const mqc) {
340         do {
341                 if (mqc->ct == 0) {
342                         opj_mqc_bytein(mqc);
343                 }
344                 mqc->a <<= 1;
345                 mqc->c <<= 1;
346                 mqc->ct--;
347         } while (mqc->a < 0x8000);
348 }
349
350 /* 
351 ==========================================================
352    MQ-Coder interface
353 ==========================================================
354 */
355
356 opj_mqc_t* opj_mqc_create(void) {
357         opj_mqc_t *mqc = (opj_mqc_t*)opj_malloc(sizeof(opj_mqc_t));
358 #ifdef MQC_PERF_OPT
359         mqc->buffer = NULL;
360 #endif
361         return mqc;
362 }
363
364 void opj_mqc_destroy(opj_mqc_t *mqc) {
365         if(mqc) {
366 #ifdef MQC_PERF_OPT
367                 opj_free(mqc->buffer);
368 #endif
369                 opj_free(mqc);
370         }
371 }
372
373 OPJ_UINT32 opj_mqc_numbytes(opj_mqc_t *mqc) {
374         const ptrdiff_t diff = mqc->bp - mqc->start;
375   assert( diff <= 0xffffffff && diff >= 0 ); /* UINT32_MAX */
376         return (OPJ_UINT32)diff;
377 }
378
379 void opj_mqc_init_enc(opj_mqc_t *mqc, OPJ_BYTE *bp) {
380     /* TODO MSD: need to take a look to the v2 version */
381         opj_mqc_setcurctx(mqc, 0);
382         mqc->a = 0x8000;
383         mqc->c = 0;
384         mqc->bp = bp - 1;
385         mqc->ct = 12;
386         if (*mqc->bp == 0xff) {
387                 mqc->ct = 13;
388         }
389         mqc->start = bp;
390 }
391
392 void opj_mqc_encode(opj_mqc_t *mqc, OPJ_UINT32 d) {
393         if ((*mqc->curctx)->mps == d) {
394                 opj_mqc_codemps(mqc);
395         } else {
396                 opj_mqc_codelps(mqc);
397         }
398 }
399
400 void opj_mqc_flush(opj_mqc_t *mqc) {
401         opj_mqc_setbits(mqc);
402         mqc->c <<= mqc->ct;
403         opj_mqc_byteout(mqc);
404         mqc->c <<= mqc->ct;
405         opj_mqc_byteout(mqc);
406         
407         if (*mqc->bp != 0xff) {
408                 mqc->bp++;
409         }
410 }
411
412 void opj_mqc_bypass_init_enc(opj_mqc_t *mqc) {
413         mqc->c = 0;
414         mqc->ct = 8;
415         /*if (*mqc->bp == 0xff) {
416         mqc->ct = 7;
417      } */
418 }
419
420 void opj_mqc_bypass_enc(opj_mqc_t *mqc, OPJ_UINT32 d) {
421         mqc->ct--;
422         mqc->c = mqc->c + (d << mqc->ct);
423         if (mqc->ct == 0) {
424                 mqc->bp++;
425                 *mqc->bp = (OPJ_BYTE)mqc->c;
426                 mqc->ct = 8;
427                 if (*mqc->bp == 0xff) {
428                         mqc->ct = 7;
429                 }
430                 mqc->c = 0;
431         }
432 }
433
434 OPJ_UINT32 opj_mqc_bypass_flush_enc(opj_mqc_t *mqc) {
435         OPJ_BYTE bit_padding;
436         
437         bit_padding = 0;
438         
439         if (mqc->ct != 0) {
440                 while (mqc->ct > 0) {
441                         mqc->ct--;
442                         mqc->c += bit_padding << mqc->ct;
443                         bit_padding = (bit_padding + 1) & 0x01;
444                 }
445                 mqc->bp++;
446                 *mqc->bp = (OPJ_BYTE)mqc->c;
447                 mqc->ct = 8;
448                 mqc->c = 0;
449         }
450         
451         return 1;
452 }
453
454 void opj_mqc_reset_enc(opj_mqc_t *mqc) {
455         opj_mqc_resetstates(mqc);
456         opj_mqc_setstate(mqc, T1_CTXNO_UNI, 0, 46);
457         opj_mqc_setstate(mqc, T1_CTXNO_AGG, 0, 3);
458         opj_mqc_setstate(mqc, T1_CTXNO_ZC, 0, 4);
459 }
460
461 OPJ_UINT32 opj_mqc_restart_enc(opj_mqc_t *mqc) {
462         OPJ_UINT32 correction = 1;
463         
464         /* <flush part> */
465         OPJ_INT32 n = 27 - 15 - mqc->ct;
466         mqc->c <<= mqc->ct;
467         while (n > 0) {
468                 opj_mqc_byteout(mqc);
469                 n -= mqc->ct;
470                 mqc->c <<= mqc->ct;
471         }
472         opj_mqc_byteout(mqc);
473         
474         return correction;
475 }
476
477 void opj_mqc_restart_init_enc(opj_mqc_t *mqc) {
478         /* <Re-init part> */
479         opj_mqc_setcurctx(mqc, 0);
480         mqc->a = 0x8000;
481         mqc->c = 0;
482         mqc->ct = 12;
483         mqc->bp--;
484         if (*mqc->bp == 0xff) {
485                 mqc->ct = 13;
486         }
487 }
488
489 void opj_mqc_erterm_enc(opj_mqc_t *mqc) {
490         OPJ_INT32 k = 11 - mqc->ct + 1;
491         
492         while (k > 0) {
493                 mqc->c <<= mqc->ct;
494                 mqc->ct = 0;
495                 opj_mqc_byteout(mqc);
496                 k -= mqc->ct;
497         }
498         
499         if (*mqc->bp != 0xff) {
500                 opj_mqc_byteout(mqc);
501         }
502 }
503
504 void opj_mqc_segmark_enc(opj_mqc_t *mqc) {
505         OPJ_UINT32 i;
506         opj_mqc_setcurctx(mqc, 18);
507         
508         for (i = 1; i < 5; i++) {
509                 opj_mqc_encode(mqc, i % 2);
510         }
511 }
512
513 OPJ_BOOL opj_mqc_init_dec(opj_mqc_t *mqc, OPJ_BYTE *bp, OPJ_UINT32 len) {
514         opj_mqc_setcurctx(mqc, 0);
515         mqc->start = bp;
516         mqc->end = bp + len;
517         mqc->bp = bp;
518         if (len==0) mqc->c = 0xff << 16;
519         else mqc->c = *mqc->bp << 16;
520
521 #ifdef MQC_PERF_OPT /* TODO_MSD: check this option and put in experimental */
522         {
523         OPJ_UINT32 c;
524                 OPJ_UINT32 *ip;
525                 OPJ_BYTE *end = mqc->end - 1;
526         void* new_buffer = opj_realloc(mqc->buffer, (len + 1) * sizeof(OPJ_UINT32));
527         if (! new_buffer) {
528             opj_free(mqc->buffer);
529             mqc->buffer = NULL;
530             return OPJ_FALSE;
531         }
532         mqc->buffer = new_buffer;
533                 
534         ip = (OPJ_UINT32 *) mqc->buffer;
535
536                 while (bp < end) {
537                         c = *(bp + 1);
538                         if (*bp == 0xff) {
539                                 if (c > 0x8f) {
540                                         break;
541                                 } else {
542                                         *ip = 0x00000017 | (c << 9);
543                                 }
544                         } else {
545                                 *ip = 0x00000018 | (c << 8);
546                         }
547                         bp++;
548                         ip++;
549                 }
550
551                 /* Handle last byte of data */
552                 c = 0xff;
553                 if (*bp == 0xff) {
554                         *ip = 0x0000ff18;
555                 } else {
556                         bp++;
557                         *ip = 0x00000018 | (c << 8);
558                 }
559                 ip++;
560
561                 *ip = 0x0000ff08;
562                 mqc->bp = mqc->buffer;
563         }
564 #endif
565         opj_mqc_bytein(mqc);
566         mqc->c <<= 7;
567         mqc->ct -= 7;
568         mqc->a = 0x8000;
569         return OPJ_TRUE;
570 }
571
572 OPJ_INT32 opj_mqc_decode(opj_mqc_t *const mqc) {
573         OPJ_INT32 d;
574         mqc->a -= (*mqc->curctx)->qeval;
575         if ((mqc->c >> 16) < (*mqc->curctx)->qeval) {
576                 d = opj_mqc_lpsexchange(mqc);
577                 opj_mqc_renormd(mqc);
578         } else {
579                 mqc->c -= (*mqc->curctx)->qeval << 16;
580                 if ((mqc->a & 0x8000) == 0) {
581                         d = opj_mqc_mpsexchange(mqc);
582                         opj_mqc_renormd(mqc);
583                 } else {
584                         d = (*mqc->curctx)->mps;
585                 }
586         }
587
588         return d;
589 }
590
591 void opj_mqc_resetstates(opj_mqc_t *mqc) {
592         OPJ_UINT32 i;
593         for (i = 0; i < MQC_NUMCTXS; i++) {
594                 mqc->ctxs[i] = mqc_states;
595         }
596 }
597
598 void opj_mqc_setstate(opj_mqc_t *mqc, OPJ_UINT32 ctxno, OPJ_UINT32 msb, OPJ_INT32 prob) {
599         mqc->ctxs[ctxno] = &mqc_states[msb + (prob << 1)];
600 }
601
602