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