opj_dwt_decode_partial_1_parallel(): add SSE2 optimization
[openjpeg.git] / src / lib / openjp2 / dwt.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) 2007, Jonathan Ballard <dzonatas@dzonux.net>
15  * Copyright (c) 2007, Callum Lerwick <seg@haxxed.com>
16  * Copyright (c) 2017, IntoPIX SA <support@intopix.com>
17  * All rights reserved.
18  *
19  * Redistribution and use in source and binary forms, with or without
20  * modification, are permitted provided that the following conditions
21  * are met:
22  * 1. Redistributions of source code must retain the above copyright
23  *    notice, this list of conditions and the following disclaimer.
24  * 2. Redistributions in binary form must reproduce the above copyright
25  *    notice, this list of conditions and the following disclaimer in the
26  *    documentation and/or other materials provided with the distribution.
27  *
28  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS `AS IS'
29  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
30  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
31  * ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
32  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
33  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
34  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
35  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
36  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
37  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
38  * POSSIBILITY OF SUCH DAMAGE.
39  */
40
41 #include <assert.h>
42
43 #define OPJ_SKIP_POISON
44 #include "opj_includes.h"
45
46 #ifdef __SSE__
47 #include <xmmintrin.h>
48 #endif
49 #ifdef __SSE2__
50 #include <emmintrin.h>
51 #endif
52 #ifdef __SSSE3__
53 #include <tmmintrin.h>
54 #endif
55 #ifdef __AVX2__
56 #include <immintrin.h>
57 #endif
58
59 #if defined(__GNUC__)
60 #pragma GCC poison malloc calloc realloc free
61 #endif
62
63 /** @defgroup DWT DWT - Implementation of a discrete wavelet transform */
64 /*@{*/
65
66 #define OPJ_WS(i) v->mem[(i)*2]
67 #define OPJ_WD(i) v->mem[(1+(i)*2)]
68
69 #ifdef __AVX2__
70 /** Number of int32 values in a AVX2 register */
71 #define VREG_INT_COUNT       8
72 #else
73 /** Number of int32 values in a SSE2 register */
74 #define VREG_INT_COUNT       4
75 #endif
76
77 /** Number of columns that we can process in parallel in the vertical pass */
78 #define PARALLEL_COLS_53     (2*VREG_INT_COUNT)
79
80 /** @name Local data structures */
81 /*@{*/
82
83 typedef struct dwt_local {
84     OPJ_INT32* mem;
85     OPJ_INT32 dn;   /* number of elements in high pass band */
86     OPJ_INT32 sn;   /* number of elements in low pass band */
87     OPJ_INT32 cas;  /* 0 = start on even coord, 1 = start on odd coord */
88 } opj_dwt_t;
89
90 typedef union {
91     OPJ_FLOAT32 f[4];
92 } opj_v4_t;
93
94 typedef struct v4dwt_local {
95     opj_v4_t*   wavelet ;
96     OPJ_INT32       dn ;  /* number of elements in high pass band */
97     OPJ_INT32       sn ;  /* number of elements in low pass band */
98     OPJ_INT32       cas ; /* 0 = start on even coord, 1 = start on odd coord */
99     OPJ_UINT32      win_l_x0; /* start coord in low pass band */
100     OPJ_UINT32      win_l_x1; /* end coord in low pass band */
101     OPJ_UINT32      win_h_x0; /* start coord in high pass band */
102     OPJ_UINT32      win_h_x1; /* end coord in high pass band */
103 } opj_v4dwt_t ;
104
105 static const OPJ_FLOAT32 opj_dwt_alpha =  1.586134342f; /*  12994 */
106 static const OPJ_FLOAT32 opj_dwt_beta  =  0.052980118f; /*    434 */
107 static const OPJ_FLOAT32 opj_dwt_gamma = -0.882911075f; /*  -7233 */
108 static const OPJ_FLOAT32 opj_dwt_delta = -0.443506852f; /*  -3633 */
109
110 static const OPJ_FLOAT32 opj_K      = 1.230174105f; /*  10078 */
111 static const OPJ_FLOAT32 opj_c13318 = 1.625732422f;
112
113 /*@}*/
114
115 /**
116 Virtual function type for wavelet transform in 1-D
117 */
118 typedef void (*DWT1DFN)(const opj_dwt_t* v);
119
120 /** @name Local static functions */
121 /*@{*/
122
123 /**
124 Forward lazy transform (horizontal)
125 */
126 static void opj_dwt_deinterleave_h(OPJ_INT32 *a, OPJ_INT32 *b, OPJ_INT32 dn,
127                                    OPJ_INT32 sn, OPJ_INT32 cas);
128 /**
129 Forward lazy transform (vertical)
130 */
131 static void opj_dwt_deinterleave_v(OPJ_INT32 *a, OPJ_INT32 *b, OPJ_INT32 dn,
132                                    OPJ_INT32 sn, OPJ_INT32 x, OPJ_INT32 cas);
133 /**
134 Forward 5-3 wavelet transform in 1-D
135 */
136 static void opj_dwt_encode_1(OPJ_INT32 *a, OPJ_INT32 dn, OPJ_INT32 sn,
137                              OPJ_INT32 cas);
138 /**
139 Forward 9-7 wavelet transform in 1-D
140 */
141 static void opj_dwt_encode_1_real(OPJ_INT32 *a, OPJ_INT32 dn, OPJ_INT32 sn,
142                                   OPJ_INT32 cas);
143 /**
144 Explicit calculation of the Quantization Stepsizes
145 */
146 static void opj_dwt_encode_stepsize(OPJ_INT32 stepsize, OPJ_INT32 numbps,
147                                     opj_stepsize_t *bandno_stepsize);
148 /**
149 Inverse wavelet transform in 2-D.
150 */
151 static OPJ_BOOL opj_dwt_decode_tile(opj_thread_pool_t* tp,
152                                     opj_tcd_tilecomp_t* tilec, OPJ_UINT32 i);
153
154 static OPJ_BOOL opj_dwt_decode_partial_tile(
155     opj_tcd_tilecomp_t* tilec,
156     OPJ_UINT32 numres);
157
158 static OPJ_BOOL opj_dwt_encode_procedure(opj_tcd_tilecomp_t * tilec,
159         void (*p_function)(OPJ_INT32 *, OPJ_INT32, OPJ_INT32, OPJ_INT32));
160
161 static OPJ_UINT32 opj_dwt_max_resolution(opj_tcd_resolution_t* OPJ_RESTRICT r,
162         OPJ_UINT32 i);
163
164 /* <summary>                             */
165 /* Inverse 9-7 wavelet transform in 1-D. */
166 /* </summary>                            */
167 static void opj_v4dwt_decode(opj_v4dwt_t* OPJ_RESTRICT dwt);
168
169 static void opj_v4dwt_interleave_h(opj_v4dwt_t* OPJ_RESTRICT dwt,
170                                    OPJ_FLOAT32* OPJ_RESTRICT a,
171                                    OPJ_UINT32 width,
172                                    OPJ_UINT32 remaining_height);
173
174 static void opj_v4dwt_interleave_v(opj_v4dwt_t* OPJ_RESTRICT dwt,
175                                    OPJ_FLOAT32* OPJ_RESTRICT a,
176                                    OPJ_UINT32 width,
177                                    OPJ_UINT32 nb_elts_read);
178
179 #ifdef __SSE__
180 static void opj_v4dwt_decode_step1_sse(opj_v4_t* w,
181                                        OPJ_UINT32 start,
182                                        OPJ_UINT32 end,
183                                        const __m128 c);
184
185 static void opj_v4dwt_decode_step2_sse(opj_v4_t* l, opj_v4_t* w,
186                                        OPJ_UINT32 start,
187                                        OPJ_UINT32 end,
188                                        OPJ_UINT32 m, __m128 c);
189
190 #else
191 static void opj_v4dwt_decode_step1(opj_v4_t* w,
192                                    OPJ_UINT32 start,
193                                    OPJ_UINT32 end,
194                                    const OPJ_FLOAT32 c);
195
196 static void opj_v4dwt_decode_step2(opj_v4_t* l, opj_v4_t* w,
197                                    OPJ_UINT32 start,
198                                    OPJ_UINT32 end,
199                                    OPJ_UINT32 m,
200                                    OPJ_FLOAT32 c);
201
202 #endif
203
204 /*@}*/
205
206 /*@}*/
207
208 #define OPJ_S(i) a[(i)*2]
209 #define OPJ_D(i) a[(1+(i)*2)]
210 #define OPJ_S_(i) ((i)<0?OPJ_S(0):((i)>=sn?OPJ_S(sn-1):OPJ_S(i)))
211 #define OPJ_D_(i) ((i)<0?OPJ_D(0):((i)>=dn?OPJ_D(dn-1):OPJ_D(i)))
212 /* new */
213 #define OPJ_SS_(i) ((i)<0?OPJ_S(0):((i)>=dn?OPJ_S(dn-1):OPJ_S(i)))
214 #define OPJ_DD_(i) ((i)<0?OPJ_D(0):((i)>=sn?OPJ_D(sn-1):OPJ_D(i)))
215
216 /* <summary>                                                              */
217 /* This table contains the norms of the 5-3 wavelets for different bands. */
218 /* </summary>                                                             */
219 static const OPJ_FLOAT64 opj_dwt_norms[4][10] = {
220     {1.000, 1.500, 2.750, 5.375, 10.68, 21.34, 42.67, 85.33, 170.7, 341.3},
221     {1.038, 1.592, 2.919, 5.703, 11.33, 22.64, 45.25, 90.48, 180.9},
222     {1.038, 1.592, 2.919, 5.703, 11.33, 22.64, 45.25, 90.48, 180.9},
223     {.7186, .9218, 1.586, 3.043, 6.019, 12.01, 24.00, 47.97, 95.93}
224 };
225
226 /* <summary>                                                              */
227 /* This table contains the norms of the 9-7 wavelets for different bands. */
228 /* </summary>                                                             */
229 static const OPJ_FLOAT64 opj_dwt_norms_real[4][10] = {
230     {1.000, 1.965, 4.177, 8.403, 16.90, 33.84, 67.69, 135.3, 270.6, 540.9},
231     {2.022, 3.989, 8.355, 17.04, 34.27, 68.63, 137.3, 274.6, 549.0},
232     {2.022, 3.989, 8.355, 17.04, 34.27, 68.63, 137.3, 274.6, 549.0},
233     {2.080, 3.865, 8.307, 17.18, 34.71, 69.59, 139.3, 278.6, 557.2}
234 };
235
236 /*
237 ==========================================================
238    local functions
239 ==========================================================
240 */
241
242 /* <summary>                             */
243 /* Forward lazy transform (horizontal).  */
244 /* </summary>                            */
245 static void opj_dwt_deinterleave_h(OPJ_INT32 *a, OPJ_INT32 *b, OPJ_INT32 dn,
246                                    OPJ_INT32 sn, OPJ_INT32 cas)
247 {
248     OPJ_INT32 i;
249     OPJ_INT32 * l_dest = b;
250     OPJ_INT32 * l_src = a + cas;
251
252     for (i = 0; i < sn; ++i) {
253         *l_dest++ = *l_src;
254         l_src += 2;
255     }
256
257     l_dest = b + sn;
258     l_src = a + 1 - cas;
259
260     for (i = 0; i < dn; ++i)  {
261         *l_dest++ = *l_src;
262         l_src += 2;
263     }
264 }
265
266 /* <summary>                             */
267 /* Forward lazy transform (vertical).    */
268 /* </summary>                            */
269 static void opj_dwt_deinterleave_v(OPJ_INT32 *a, OPJ_INT32 *b, OPJ_INT32 dn,
270                                    OPJ_INT32 sn, OPJ_INT32 x, OPJ_INT32 cas)
271 {
272     OPJ_INT32 i = sn;
273     OPJ_INT32 * l_dest = b;
274     OPJ_INT32 * l_src = a + cas;
275
276     while (i--) {
277         *l_dest = *l_src;
278         l_dest += x;
279         l_src += 2;
280     } /* b[i*x]=a[2*i+cas]; */
281
282     l_dest = b + (size_t)sn * (size_t)x;
283     l_src = a + 1 - cas;
284
285     i = dn;
286     while (i--) {
287         *l_dest = *l_src;
288         l_dest += x;
289         l_src += 2;
290     } /*b[(sn+i)*x]=a[(2*i+1-cas)];*/
291 }
292
293 #ifdef STANDARD_SLOW_VERSION
294 /* <summary>                             */
295 /* Inverse lazy transform (horizontal).  */
296 /* </summary>                            */
297 static void opj_dwt_interleave_h(const opj_dwt_t* h, OPJ_INT32 *a)
298 {
299     OPJ_INT32 *ai = a;
300     OPJ_INT32 *bi = h->mem + h->cas;
301     OPJ_INT32  i    = h->sn;
302     while (i--) {
303         *bi = *(ai++);
304         bi += 2;
305     }
306     ai  = a + h->sn;
307     bi  = h->mem + 1 - h->cas;
308     i   = h->dn ;
309     while (i--) {
310         *bi = *(ai++);
311         bi += 2;
312     }
313 }
314
315 /* <summary>                             */
316 /* Inverse lazy transform (vertical).    */
317 /* </summary>                            */
318 static void opj_dwt_interleave_v(const opj_dwt_t* v, OPJ_INT32 *a, OPJ_INT32 x)
319 {
320     OPJ_INT32 *ai = a;
321     OPJ_INT32 *bi = v->mem + v->cas;
322     OPJ_INT32  i = v->sn;
323     while (i--) {
324         *bi = *ai;
325         bi += 2;
326         ai += x;
327     }
328     ai = a + (v->sn * (size_t)x);
329     bi = v->mem + 1 - v->cas;
330     i = v->dn ;
331     while (i--) {
332         *bi = *ai;
333         bi += 2;
334         ai += x;
335     }
336 }
337
338 #endif /* STANDARD_SLOW_VERSION */
339
340 /* <summary>                            */
341 /* Forward 5-3 wavelet transform in 1-D. */
342 /* </summary>                           */
343 static void opj_dwt_encode_1(OPJ_INT32 *a, OPJ_INT32 dn, OPJ_INT32 sn,
344                              OPJ_INT32 cas)
345 {
346     OPJ_INT32 i;
347
348     if (!cas) {
349         if ((dn > 0) || (sn > 1)) { /* NEW :  CASE ONE ELEMENT */
350             for (i = 0; i < dn; i++) {
351                 OPJ_D(i) -= (OPJ_S_(i) + OPJ_S_(i + 1)) >> 1;
352             }
353             for (i = 0; i < sn; i++) {
354                 OPJ_S(i) += (OPJ_D_(i - 1) + OPJ_D_(i) + 2) >> 2;
355             }
356         }
357     } else {
358         if (!sn && dn == 1) {       /* NEW :  CASE ONE ELEMENT */
359             OPJ_S(0) *= 2;
360         } else {
361             for (i = 0; i < dn; i++) {
362                 OPJ_S(i) -= (OPJ_DD_(i) + OPJ_DD_(i - 1)) >> 1;
363             }
364             for (i = 0; i < sn; i++) {
365                 OPJ_D(i) += (OPJ_SS_(i) + OPJ_SS_(i + 1) + 2) >> 2;
366             }
367         }
368     }
369 }
370
371 #ifdef STANDARD_SLOW_VERSION
372 /* <summary>                            */
373 /* Inverse 5-3 wavelet transform in 1-D. */
374 /* </summary>                           */
375 static void opj_dwt_decode_1_(OPJ_INT32 *a, OPJ_INT32 dn, OPJ_INT32 sn,
376                               OPJ_INT32 cas)
377 {
378     OPJ_INT32 i;
379
380     if (!cas) {
381         if ((dn > 0) || (sn > 1)) { /* NEW :  CASE ONE ELEMENT */
382             for (i = 0; i < sn; i++) {
383                 OPJ_S(i) -= (OPJ_D_(i - 1) + OPJ_D_(i) + 2) >> 2;
384             }
385             for (i = 0; i < dn; i++) {
386                 OPJ_D(i) += (OPJ_S_(i) + OPJ_S_(i + 1)) >> 1;
387             }
388         }
389     } else {
390         if (!sn  && dn == 1) {        /* NEW :  CASE ONE ELEMENT */
391             OPJ_S(0) /= 2;
392         } else {
393             for (i = 0; i < sn; i++) {
394                 OPJ_D(i) -= (OPJ_SS_(i) + OPJ_SS_(i + 1) + 2) >> 2;
395             }
396             for (i = 0; i < dn; i++) {
397                 OPJ_S(i) += (OPJ_DD_(i) + OPJ_DD_(i - 1)) >> 1;
398             }
399         }
400     }
401 }
402
403 static void opj_dwt_decode_1(const opj_dwt_t *v)
404 {
405     opj_dwt_decode_1_(v->mem, v->dn, v->sn, v->cas);
406 }
407
408 #endif /* STANDARD_SLOW_VERSION */
409
410 #if !defined(STANDARD_SLOW_VERSION)
411 static void  opj_idwt53_h_cas0(OPJ_INT32* tmp,
412                                const OPJ_INT32 sn,
413                                const OPJ_INT32 len,
414                                OPJ_INT32* tiledp)
415 {
416     OPJ_INT32 i, j;
417     const OPJ_INT32* in_even = &tiledp[0];
418     const OPJ_INT32* in_odd = &tiledp[sn];
419
420 #ifdef TWO_PASS_VERSION
421     /* For documentation purpose: performs lifting in two iterations, */
422     /* but without explicit interleaving */
423
424     assert(len > 1);
425
426     /* Even */
427     tmp[0] = in_even[0] - ((in_odd[0] + 1) >> 1);
428     for (i = 2, j = 0; i <= len - 2; i += 2, j++) {
429         tmp[i] = in_even[j + 1] - ((in_odd[j] + in_odd[j + 1] + 2) >> 2);
430     }
431     if (len & 1) { /* if len is odd */
432         tmp[len - 1] = in_even[(len - 1) / 2] - ((in_odd[(len - 2) / 2] + 1) >> 1);
433     }
434
435     /* Odd */
436     for (i = 1, j = 0; i < len - 1; i += 2, j++) {
437         tmp[i] = in_odd[j] + ((tmp[i - 1] + tmp[i + 1]) >> 1);
438     }
439     if (!(len & 1)) { /* if len is even */
440         tmp[len - 1] = in_odd[(len - 1) / 2] + tmp[len - 2];
441     }
442 #else
443     OPJ_INT32 d1c, d1n, s1n, s0c, s0n;
444
445     assert(len > 1);
446
447     /* Improved version of the TWO_PASS_VERSION: */
448     /* Performs lifting in one single iteration. Saves memory */
449     /* accesses and explicit interleaving. */
450     s1n = in_even[0];
451     d1n = in_odd[0];
452     s0n = s1n - ((d1n + 1) >> 1);
453
454     for (i = 0, j = 1; i < (len - 3); i += 2, j++) {
455         d1c = d1n;
456         s0c = s0n;
457
458         s1n = in_even[j];
459         d1n = in_odd[j];
460
461         s0n = s1n - ((d1c + d1n + 2) >> 2);
462
463         tmp[i  ] = s0c;
464         tmp[i + 1] = d1c + ((s0c + s0n) >> 1);
465     }
466
467     tmp[i] = s0n;
468
469     if (len & 1) {
470         tmp[len - 1] = in_even[(len - 1) / 2] - ((d1n + 1) >> 1);
471         tmp[len - 2] = d1n + ((s0n + tmp[len - 1]) >> 1);
472     } else {
473         tmp[len - 1] = d1n + s0n;
474     }
475 #endif
476     memcpy(tiledp, tmp, (OPJ_UINT32)len * sizeof(OPJ_INT32));
477 }
478
479 static void  opj_idwt53_h_cas1(OPJ_INT32* tmp,
480                                const OPJ_INT32 sn,
481                                const OPJ_INT32 len,
482                                OPJ_INT32* tiledp)
483 {
484     OPJ_INT32 i, j;
485     const OPJ_INT32* in_even = &tiledp[sn];
486     const OPJ_INT32* in_odd = &tiledp[0];
487
488 #ifdef TWO_PASS_VERSION
489     /* For documentation purpose: performs lifting in two iterations, */
490     /* but without explicit interleaving */
491
492     assert(len > 2);
493
494     /* Odd */
495     for (i = 1, j = 0; i < len - 1; i += 2, j++) {
496         tmp[i] = in_odd[j] - ((in_even[j] + in_even[j + 1] + 2) >> 2);
497     }
498     if (!(len & 1)) {
499         tmp[len - 1] = in_odd[len / 2 - 1] - ((in_even[len / 2 - 1] + 1) >> 1);
500     }
501
502     /* Even */
503     tmp[0] = in_even[0] + tmp[1];
504     for (i = 2, j = 1; i < len - 1; i += 2, j++) {
505         tmp[i] = in_even[j] + ((tmp[i + 1] + tmp[i - 1]) >> 1);
506     }
507     if (len & 1) {
508         tmp[len - 1] = in_even[len / 2] + tmp[len - 2];
509     }
510 #else
511     OPJ_INT32 s1, s2, dc, dn;
512
513     assert(len > 2);
514
515     /* Improved version of the TWO_PASS_VERSION: */
516     /* Performs lifting in one single iteration. Saves memory */
517     /* accesses and explicit interleaving. */
518
519     s1 = in_even[1];
520     dc = in_odd[0] - ((in_even[0] + s1 + 2) >> 2);
521     tmp[0] = in_even[0] + dc;
522
523     for (i = 1, j = 1; i < (len - 2 - !(len & 1)); i += 2, j++) {
524
525         s2 = in_even[j + 1];
526
527         dn = in_odd[j] - ((s1 + s2 + 2) >> 2);
528         tmp[i  ] = dc;
529         tmp[i + 1] = s1 + ((dn + dc) >> 1);
530
531         dc = dn;
532         s1 = s2;
533     }
534
535     tmp[i] = dc;
536
537     if (!(len & 1)) {
538         dn = in_odd[len / 2 - 1] - ((s1 + 1) >> 1);
539         tmp[len - 2] = s1 + ((dn + dc) >> 1);
540         tmp[len - 1] = dn;
541     } else {
542         tmp[len - 1] = s1 + dc;
543     }
544 #endif
545     memcpy(tiledp, tmp, (OPJ_UINT32)len * sizeof(OPJ_INT32));
546 }
547
548
549 #endif /* !defined(STANDARD_SLOW_VERSION) */
550
551 /* <summary>                            */
552 /* Inverse 5-3 wavelet transform in 1-D for one row. */
553 /* </summary>                           */
554 /* Performs interleave, inverse wavelet transform and copy back to buffer */
555 static void opj_idwt53_h(const opj_dwt_t *dwt,
556                          OPJ_INT32* tiledp)
557 {
558 #ifdef STANDARD_SLOW_VERSION
559     /* For documentation purpose */
560     opj_dwt_interleave_h(dwt, tiledp);
561     opj_dwt_decode_1(dwt);
562     memcpy(tiledp, dwt->mem, (OPJ_UINT32)(dwt->sn + dwt->dn) * sizeof(OPJ_INT32));
563 #else
564     const OPJ_INT32 sn = dwt->sn;
565     const OPJ_INT32 len = sn + dwt->dn;
566     if (dwt->cas == 0) { /* Left-most sample is on even coordinate */
567         if (len > 1) {
568             opj_idwt53_h_cas0(dwt->mem, sn, len, tiledp);
569         } else {
570             /* Unmodified value */
571         }
572     } else { /* Left-most sample is on odd coordinate */
573         if (len == 1) {
574             tiledp[0] /= 2;
575         } else if (len == 2) {
576             OPJ_INT32* out = dwt->mem;
577             const OPJ_INT32* in_even = &tiledp[sn];
578             const OPJ_INT32* in_odd = &tiledp[0];
579             out[1] = in_odd[0] - ((in_even[0] + 1) >> 1);
580             out[0] = in_even[0] + out[1];
581             memcpy(tiledp, dwt->mem, (OPJ_UINT32)len * sizeof(OPJ_INT32));
582         } else if (len > 2) {
583             opj_idwt53_h_cas1(dwt->mem, sn, len, tiledp);
584         }
585     }
586 #endif
587 }
588
589 #if (defined(__SSE2__) || defined(__AVX2__)) && !defined(STANDARD_SLOW_VERSION)
590
591 /* Conveniency macros to improve the readabilty of the formulas */
592 #if __AVX2__
593 #define VREG        __m256i
594 #define LOAD_CST(x) _mm256_set1_epi32(x)
595 #define LOAD(x)     _mm256_load_si256((const VREG*)(x))
596 #define LOADU(x)    _mm256_loadu_si256((const VREG*)(x))
597 #define STORE(x,y)  _mm256_store_si256((VREG*)(x),(y))
598 #define STOREU(x,y) _mm256_storeu_si256((VREG*)(x),(y))
599 #define ADD(x,y)    _mm256_add_epi32((x),(y))
600 #define SUB(x,y)    _mm256_sub_epi32((x),(y))
601 #define SAR(x,y)    _mm256_srai_epi32((x),(y))
602 #else
603 #define VREG        __m128i
604 #define LOAD_CST(x) _mm_set1_epi32(x)
605 #define LOAD(x)     _mm_load_si128((const VREG*)(x))
606 #define LOADU(x)    _mm_loadu_si128((const VREG*)(x))
607 #define STORE(x,y)  _mm_store_si128((VREG*)(x),(y))
608 #define STOREU(x,y) _mm_storeu_si128((VREG*)(x),(y))
609 #define ADD(x,y)    _mm_add_epi32((x),(y))
610 #define SUB(x,y)    _mm_sub_epi32((x),(y))
611 #define SAR(x,y)    _mm_srai_epi32((x),(y))
612 #endif
613 #define ADD3(x,y,z) ADD(ADD(x,y),z)
614
615 static
616 void opj_idwt53_v_final_memcpy(OPJ_INT32* tiledp_col,
617                                const OPJ_INT32* tmp,
618                                OPJ_INT32 len,
619                                size_t stride)
620 {
621     OPJ_INT32 i;
622     for (i = 0; i < len; ++i) {
623         /* A memcpy(&tiledp_col[i * stride + 0],
624                     &tmp[PARALLEL_COLS_53 * i + 0],
625                     PARALLEL_COLS_53 * sizeof(OPJ_INT32))
626            would do but would be a tiny bit slower.
627            We can take here advantage of our knowledge of alignment */
628         STOREU(&tiledp_col[(size_t)i * stride + 0],
629                LOAD(&tmp[PARALLEL_COLS_53 * i + 0]));
630         STOREU(&tiledp_col[(size_t)i * stride + VREG_INT_COUNT],
631                LOAD(&tmp[PARALLEL_COLS_53 * i + VREG_INT_COUNT]));
632     }
633 }
634
635 /** Vertical inverse 5x3 wavelet transform for 8 columns in SSE2, or
636  * 16 in AVX2, when top-most pixel is on even coordinate */
637 static void opj_idwt53_v_cas0_mcols_SSE2_OR_AVX2(
638     OPJ_INT32* tmp,
639     const OPJ_INT32 sn,
640     const OPJ_INT32 len,
641     OPJ_INT32* tiledp_col,
642     const size_t stride)
643 {
644     const OPJ_INT32* in_even = &tiledp_col[0];
645     const OPJ_INT32* in_odd = &tiledp_col[(size_t)sn * stride];
646
647     OPJ_INT32 i;
648     size_t j;
649     VREG d1c_0, d1n_0, s1n_0, s0c_0, s0n_0;
650     VREG d1c_1, d1n_1, s1n_1, s0c_1, s0n_1;
651     const VREG two = LOAD_CST(2);
652
653     assert(len > 1);
654 #if __AVX2__
655     assert(PARALLEL_COLS_53 == 16);
656     assert(VREG_INT_COUNT == 8);
657 #else
658     assert(PARALLEL_COLS_53 == 8);
659     assert(VREG_INT_COUNT == 4);
660 #endif
661
662     /* Note: loads of input even/odd values must be done in a unaligned */
663     /* fashion. But stores in tmp can be done with aligned store, since */
664     /* the temporary buffer is properly aligned */
665     assert((size_t)tmp % (sizeof(OPJ_INT32) * VREG_INT_COUNT) == 0);
666
667     s1n_0 = LOADU(in_even + 0);
668     s1n_1 = LOADU(in_even + VREG_INT_COUNT);
669     d1n_0 = LOADU(in_odd);
670     d1n_1 = LOADU(in_odd + VREG_INT_COUNT);
671
672     /* s0n = s1n - ((d1n + 1) >> 1); <==> */
673     /* s0n = s1n - ((d1n + d1n + 2) >> 2); */
674     s0n_0 = SUB(s1n_0, SAR(ADD3(d1n_0, d1n_0, two), 2));
675     s0n_1 = SUB(s1n_1, SAR(ADD3(d1n_1, d1n_1, two), 2));
676
677     for (i = 0, j = 1; i < (len - 3); i += 2, j++) {
678         d1c_0 = d1n_0;
679         s0c_0 = s0n_0;
680         d1c_1 = d1n_1;
681         s0c_1 = s0n_1;
682
683         s1n_0 = LOADU(in_even + j * stride);
684         s1n_1 = LOADU(in_even + j * stride + VREG_INT_COUNT);
685         d1n_0 = LOADU(in_odd + j * stride);
686         d1n_1 = LOADU(in_odd + j * stride + VREG_INT_COUNT);
687
688         /*s0n = s1n - ((d1c + d1n + 2) >> 2);*/
689         s0n_0 = SUB(s1n_0, SAR(ADD3(d1c_0, d1n_0, two), 2));
690         s0n_1 = SUB(s1n_1, SAR(ADD3(d1c_1, d1n_1, two), 2));
691
692         STORE(tmp + PARALLEL_COLS_53 * (i + 0), s0c_0);
693         STORE(tmp + PARALLEL_COLS_53 * (i + 0) + VREG_INT_COUNT, s0c_1);
694
695         /* d1c + ((s0c + s0n) >> 1) */
696         STORE(tmp + PARALLEL_COLS_53 * (i + 1) + 0,
697               ADD(d1c_0, SAR(ADD(s0c_0, s0n_0), 1)));
698         STORE(tmp + PARALLEL_COLS_53 * (i + 1) + VREG_INT_COUNT,
699               ADD(d1c_1, SAR(ADD(s0c_1, s0n_1), 1)));
700     }
701
702     STORE(tmp + PARALLEL_COLS_53 * (i + 0) + 0, s0n_0);
703     STORE(tmp + PARALLEL_COLS_53 * (i + 0) + VREG_INT_COUNT, s0n_1);
704
705     if (len & 1) {
706         VREG tmp_len_minus_1;
707         s1n_0 = LOADU(in_even + (size_t)((len - 1) / 2) * stride);
708         /* tmp_len_minus_1 = s1n - ((d1n + 1) >> 1); */
709         tmp_len_minus_1 = SUB(s1n_0, SAR(ADD3(d1n_0, d1n_0, two), 2));
710         STORE(tmp + PARALLEL_COLS_53 * (len - 1), tmp_len_minus_1);
711         /* d1n + ((s0n + tmp_len_minus_1) >> 1) */
712         STORE(tmp + PARALLEL_COLS_53 * (len - 2),
713               ADD(d1n_0, SAR(ADD(s0n_0, tmp_len_minus_1), 1)));
714
715         s1n_1 = LOADU(in_even + (size_t)((len - 1) / 2) * stride + VREG_INT_COUNT);
716         /* tmp_len_minus_1 = s1n - ((d1n + 1) >> 1); */
717         tmp_len_minus_1 = SUB(s1n_1, SAR(ADD3(d1n_1, d1n_1, two), 2));
718         STORE(tmp + PARALLEL_COLS_53 * (len - 1) + VREG_INT_COUNT,
719               tmp_len_minus_1);
720         /* d1n + ((s0n + tmp_len_minus_1) >> 1) */
721         STORE(tmp + PARALLEL_COLS_53 * (len - 2) + VREG_INT_COUNT,
722               ADD(d1n_1, SAR(ADD(s0n_1, tmp_len_minus_1), 1)));
723
724
725     } else {
726         STORE(tmp + PARALLEL_COLS_53 * (len - 1) + 0,
727               ADD(d1n_0, s0n_0));
728         STORE(tmp + PARALLEL_COLS_53 * (len - 1) + VREG_INT_COUNT,
729               ADD(d1n_1, s0n_1));
730     }
731
732     opj_idwt53_v_final_memcpy(tiledp_col, tmp, len, stride);
733 }
734
735
736 /** Vertical inverse 5x3 wavelet transform for 8 columns in SSE2, or
737  * 16 in AVX2, when top-most pixel is on odd coordinate */
738 static void opj_idwt53_v_cas1_mcols_SSE2_OR_AVX2(
739     OPJ_INT32* tmp,
740     const OPJ_INT32 sn,
741     const OPJ_INT32 len,
742     OPJ_INT32* tiledp_col,
743     const size_t stride)
744 {
745     OPJ_INT32 i;
746     size_t j;
747
748     VREG s1_0, s2_0, dc_0, dn_0;
749     VREG s1_1, s2_1, dc_1, dn_1;
750     const VREG two = LOAD_CST(2);
751
752     const OPJ_INT32* in_even = &tiledp_col[(size_t)sn * stride];
753     const OPJ_INT32* in_odd = &tiledp_col[0];
754
755     assert(len > 2);
756 #if __AVX2__
757     assert(PARALLEL_COLS_53 == 16);
758     assert(VREG_INT_COUNT == 8);
759 #else
760     assert(PARALLEL_COLS_53 == 8);
761     assert(VREG_INT_COUNT == 4);
762 #endif
763
764     /* Note: loads of input even/odd values must be done in a unaligned */
765     /* fashion. But stores in tmp can be done with aligned store, since */
766     /* the temporary buffer is properly aligned */
767     assert((size_t)tmp % (sizeof(OPJ_INT32) * VREG_INT_COUNT) == 0);
768
769     s1_0 = LOADU(in_even + stride);
770     /* in_odd[0] - ((in_even[0] + s1 + 2) >> 2); */
771     dc_0 = SUB(LOADU(in_odd + 0),
772                SAR(ADD3(LOADU(in_even + 0), s1_0, two), 2));
773     STORE(tmp + PARALLEL_COLS_53 * 0, ADD(LOADU(in_even + 0), dc_0));
774
775     s1_1 = LOADU(in_even + stride + VREG_INT_COUNT);
776     /* in_odd[0] - ((in_even[0] + s1 + 2) >> 2); */
777     dc_1 = SUB(LOADU(in_odd + VREG_INT_COUNT),
778                SAR(ADD3(LOADU(in_even + VREG_INT_COUNT), s1_1, two), 2));
779     STORE(tmp + PARALLEL_COLS_53 * 0 + VREG_INT_COUNT,
780           ADD(LOADU(in_even + VREG_INT_COUNT), dc_1));
781
782     for (i = 1, j = 1; i < (len - 2 - !(len & 1)); i += 2, j++) {
783
784         s2_0 = LOADU(in_even + (j + 1) * stride);
785         s2_1 = LOADU(in_even + (j + 1) * stride + VREG_INT_COUNT);
786
787         /* dn = in_odd[j * stride] - ((s1 + s2 + 2) >> 2); */
788         dn_0 = SUB(LOADU(in_odd + j * stride),
789                    SAR(ADD3(s1_0, s2_0, two), 2));
790         dn_1 = SUB(LOADU(in_odd + j * stride + VREG_INT_COUNT),
791                    SAR(ADD3(s1_1, s2_1, two), 2));
792
793         STORE(tmp + PARALLEL_COLS_53 * i, dc_0);
794         STORE(tmp + PARALLEL_COLS_53 * i + VREG_INT_COUNT, dc_1);
795
796         /* tmp[i + 1] = s1 + ((dn + dc) >> 1); */
797         STORE(tmp + PARALLEL_COLS_53 * (i + 1) + 0,
798               ADD(s1_0, SAR(ADD(dn_0, dc_0), 1)));
799         STORE(tmp + PARALLEL_COLS_53 * (i + 1) + VREG_INT_COUNT,
800               ADD(s1_1, SAR(ADD(dn_1, dc_1), 1)));
801
802         dc_0 = dn_0;
803         s1_0 = s2_0;
804         dc_1 = dn_1;
805         s1_1 = s2_1;
806     }
807     STORE(tmp + PARALLEL_COLS_53 * i, dc_0);
808     STORE(tmp + PARALLEL_COLS_53 * i + VREG_INT_COUNT, dc_1);
809
810     if (!(len & 1)) {
811         /*dn = in_odd[(len / 2 - 1) * stride] - ((s1 + 1) >> 1); */
812         dn_0 = SUB(LOADU(in_odd + (size_t)(len / 2 - 1) * stride),
813                    SAR(ADD3(s1_0, s1_0, two), 2));
814         dn_1 = SUB(LOADU(in_odd + (size_t)(len / 2 - 1) * stride + VREG_INT_COUNT),
815                    SAR(ADD3(s1_1, s1_1, two), 2));
816
817         /* tmp[len - 2] = s1 + ((dn + dc) >> 1); */
818         STORE(tmp + PARALLEL_COLS_53 * (len - 2) + 0,
819               ADD(s1_0, SAR(ADD(dn_0, dc_0), 1)));
820         STORE(tmp + PARALLEL_COLS_53 * (len - 2) + VREG_INT_COUNT,
821               ADD(s1_1, SAR(ADD(dn_1, dc_1), 1)));
822
823         STORE(tmp + PARALLEL_COLS_53 * (len - 1) + 0, dn_0);
824         STORE(tmp + PARALLEL_COLS_53 * (len - 1) + VREG_INT_COUNT, dn_1);
825     } else {
826         STORE(tmp + PARALLEL_COLS_53 * (len - 1) + 0, ADD(s1_0, dc_0));
827         STORE(tmp + PARALLEL_COLS_53 * (len - 1) + VREG_INT_COUNT,
828               ADD(s1_1, dc_1));
829     }
830
831     opj_idwt53_v_final_memcpy(tiledp_col, tmp, len, stride);
832 }
833
834 #undef VREG
835 #undef LOAD_CST
836 #undef LOADU
837 #undef LOAD
838 #undef STORE
839 #undef STOREU
840 #undef ADD
841 #undef ADD3
842 #undef SUB
843 #undef SAR
844
845 #endif /* (defined(__SSE2__) || defined(__AVX2__)) && !defined(STANDARD_SLOW_VERSION) */
846
847 #if !defined(STANDARD_SLOW_VERSION)
848 /** Vertical inverse 5x3 wavelet transform for one column, when top-most
849  * pixel is on even coordinate */
850 static void opj_idwt3_v_cas0(OPJ_INT32* tmp,
851                              const OPJ_INT32 sn,
852                              const OPJ_INT32 len,
853                              OPJ_INT32* tiledp_col,
854                              const size_t stride)
855 {
856     OPJ_INT32 i, j;
857     OPJ_INT32 d1c, d1n, s1n, s0c, s0n;
858
859     assert(len > 1);
860
861     /* Performs lifting in one single iteration. Saves memory */
862     /* accesses and explicit interleaving. */
863
864     s1n = tiledp_col[0];
865     d1n = tiledp_col[(size_t)sn * stride];
866     s0n = s1n - ((d1n + 1) >> 1);
867
868     for (i = 0, j = 0; i < (len - 3); i += 2, j++) {
869         d1c = d1n;
870         s0c = s0n;
871
872         s1n = tiledp_col[(size_t)(j + 1) * stride];
873         d1n = tiledp_col[(size_t)(sn + j + 1) * stride];
874
875         s0n = s1n - ((d1c + d1n + 2) >> 2);
876
877         tmp[i  ] = s0c;
878         tmp[i + 1] = d1c + ((s0c + s0n) >> 1);
879     }
880
881     tmp[i] = s0n;
882
883     if (len & 1) {
884         tmp[len - 1] =
885             tiledp_col[(size_t)((len - 1) / 2) * stride] -
886             ((d1n + 1) >> 1);
887         tmp[len - 2] = d1n + ((s0n + tmp[len - 1]) >> 1);
888     } else {
889         tmp[len - 1] = d1n + s0n;
890     }
891
892     for (i = 0; i < len; ++i) {
893         tiledp_col[(size_t)i * stride] = tmp[i];
894     }
895 }
896
897
898 /** Vertical inverse 5x3 wavelet transform for one column, when top-most
899  * pixel is on odd coordinate */
900 static void opj_idwt3_v_cas1(OPJ_INT32* tmp,
901                              const OPJ_INT32 sn,
902                              const OPJ_INT32 len,
903                              OPJ_INT32* tiledp_col,
904                              const size_t stride)
905 {
906     OPJ_INT32 i, j;
907     OPJ_INT32 s1, s2, dc, dn;
908     const OPJ_INT32* in_even = &tiledp_col[(size_t)sn * stride];
909     const OPJ_INT32* in_odd = &tiledp_col[0];
910
911     assert(len > 2);
912
913     /* Performs lifting in one single iteration. Saves memory */
914     /* accesses and explicit interleaving. */
915
916     s1 = in_even[stride];
917     dc = in_odd[0] - ((in_even[0] + s1 + 2) >> 2);
918     tmp[0] = in_even[0] + dc;
919     for (i = 1, j = 1; i < (len - 2 - !(len & 1)); i += 2, j++) {
920
921         s2 = in_even[(size_t)(j + 1) * stride];
922
923         dn = in_odd[(size_t)j * stride] - ((s1 + s2 + 2) >> 2);
924         tmp[i  ] = dc;
925         tmp[i + 1] = s1 + ((dn + dc) >> 1);
926
927         dc = dn;
928         s1 = s2;
929     }
930     tmp[i] = dc;
931     if (!(len & 1)) {
932         dn = in_odd[(size_t)(len / 2 - 1) * stride] - ((s1 + 1) >> 1);
933         tmp[len - 2] = s1 + ((dn + dc) >> 1);
934         tmp[len - 1] = dn;
935     } else {
936         tmp[len - 1] = s1 + dc;
937     }
938
939     for (i = 0; i < len; ++i) {
940         tiledp_col[(size_t)i * stride] = tmp[i];
941     }
942 }
943 #endif /* !defined(STANDARD_SLOW_VERSION) */
944
945 /* <summary>                            */
946 /* Inverse vertical 5-3 wavelet transform in 1-D for several columns. */
947 /* </summary>                           */
948 /* Performs interleave, inverse wavelet transform and copy back to buffer */
949 static void opj_idwt53_v(const opj_dwt_t *dwt,
950                          OPJ_INT32* tiledp_col,
951                          size_t stride,
952                          OPJ_INT32 nb_cols)
953 {
954 #ifdef STANDARD_SLOW_VERSION
955     /* For documentation purpose */
956     OPJ_INT32 k, c;
957     for (c = 0; c < nb_cols; c ++) {
958         opj_dwt_interleave_v(dwt, tiledp_col + c, stride);
959         opj_dwt_decode_1(dwt);
960         for (k = 0; k < dwt->sn + dwt->dn; ++k) {
961             tiledp_col[c + k * stride] = dwt->mem[k];
962         }
963     }
964 #else
965     const OPJ_INT32 sn = dwt->sn;
966     const OPJ_INT32 len = sn + dwt->dn;
967     if (dwt->cas == 0) {
968         /* If len == 1, unmodified value */
969
970 #if (defined(__SSE2__) || defined(__AVX2__))
971         if (len > 1 && nb_cols == PARALLEL_COLS_53) {
972             /* Same as below general case, except that thanks to SSE2/AVX2 */
973             /* we can efficently process 8/16 columns in parallel */
974             opj_idwt53_v_cas0_mcols_SSE2_OR_AVX2(dwt->mem, sn, len, tiledp_col, stride);
975             return;
976         }
977 #endif
978         if (len > 1) {
979             OPJ_INT32 c;
980             for (c = 0; c < nb_cols; c++, tiledp_col++) {
981                 opj_idwt3_v_cas0(dwt->mem, sn, len, tiledp_col, stride);
982             }
983             return;
984         }
985     } else {
986         if (len == 1) {
987             OPJ_INT32 c;
988             for (c = 0; c < nb_cols; c++, tiledp_col++) {
989                 tiledp_col[0] /= 2;
990             }
991             return;
992         }
993
994         if (len == 2) {
995             OPJ_INT32 c;
996             OPJ_INT32* out = dwt->mem;
997             for (c = 0; c < nb_cols; c++, tiledp_col++) {
998                 OPJ_INT32 i;
999                 const OPJ_INT32* in_even = &tiledp_col[(size_t)sn * stride];
1000                 const OPJ_INT32* in_odd = &tiledp_col[0];
1001
1002                 out[1] = in_odd[0] - ((in_even[0] + 1) >> 1);
1003                 out[0] = in_even[0] + out[1];
1004
1005                 for (i = 0; i < len; ++i) {
1006                     tiledp_col[(size_t)i * stride] = out[i];
1007                 }
1008             }
1009
1010             return;
1011         }
1012
1013 #if (defined(__SSE2__) || defined(__AVX2__))
1014         if (len > 2 && nb_cols == PARALLEL_COLS_53) {
1015             /* Same as below general case, except that thanks to SSE2/AVX2 */
1016             /* we can efficently process 8/16 columns in parallel */
1017             opj_idwt53_v_cas1_mcols_SSE2_OR_AVX2(dwt->mem, sn, len, tiledp_col, stride);
1018             return;
1019         }
1020 #endif
1021         if (len > 2) {
1022             OPJ_INT32 c;
1023             for (c = 0; c < nb_cols; c++, tiledp_col++) {
1024                 opj_idwt3_v_cas1(dwt->mem, sn, len, tiledp_col, stride);
1025             }
1026             return;
1027         }
1028     }
1029 #endif
1030 }
1031
1032
1033 /* <summary>                             */
1034 /* Forward 9-7 wavelet transform in 1-D. */
1035 /* </summary>                            */
1036 static void opj_dwt_encode_1_real(OPJ_INT32 *a, OPJ_INT32 dn, OPJ_INT32 sn,
1037                                   OPJ_INT32 cas)
1038 {
1039     OPJ_INT32 i;
1040     if (!cas) {
1041         if ((dn > 0) || (sn > 1)) { /* NEW :  CASE ONE ELEMENT */
1042             for (i = 0; i < dn; i++) {
1043                 OPJ_D(i) -= opj_int_fix_mul(OPJ_S_(i) + OPJ_S_(i + 1), 12993);
1044             }
1045             for (i = 0; i < sn; i++) {
1046                 OPJ_S(i) -= opj_int_fix_mul(OPJ_D_(i - 1) + OPJ_D_(i), 434);
1047             }
1048             for (i = 0; i < dn; i++) {
1049                 OPJ_D(i) += opj_int_fix_mul(OPJ_S_(i) + OPJ_S_(i + 1), 7233);
1050             }
1051             for (i = 0; i < sn; i++) {
1052                 OPJ_S(i) += opj_int_fix_mul(OPJ_D_(i - 1) + OPJ_D_(i), 3633);
1053             }
1054             for (i = 0; i < dn; i++) {
1055                 OPJ_D(i) = opj_int_fix_mul(OPJ_D(i), 5038);    /*5038 */
1056             }
1057             for (i = 0; i < sn; i++) {
1058                 OPJ_S(i) = opj_int_fix_mul(OPJ_S(i), 6659);    /*6660 */
1059             }
1060         }
1061     } else {
1062         if ((sn > 0) || (dn > 1)) { /* NEW :  CASE ONE ELEMENT */
1063             for (i = 0; i < dn; i++) {
1064                 OPJ_S(i) -= opj_int_fix_mul(OPJ_DD_(i) + OPJ_DD_(i - 1), 12993);
1065             }
1066             for (i = 0; i < sn; i++) {
1067                 OPJ_D(i) -= opj_int_fix_mul(OPJ_SS_(i) + OPJ_SS_(i + 1), 434);
1068             }
1069             for (i = 0; i < dn; i++) {
1070                 OPJ_S(i) += opj_int_fix_mul(OPJ_DD_(i) + OPJ_DD_(i - 1), 7233);
1071             }
1072             for (i = 0; i < sn; i++) {
1073                 OPJ_D(i) += opj_int_fix_mul(OPJ_SS_(i) + OPJ_SS_(i + 1), 3633);
1074             }
1075             for (i = 0; i < dn; i++) {
1076                 OPJ_S(i) = opj_int_fix_mul(OPJ_S(i), 5038);    /*5038 */
1077             }
1078             for (i = 0; i < sn; i++) {
1079                 OPJ_D(i) = opj_int_fix_mul(OPJ_D(i), 6659);    /*6660 */
1080             }
1081         }
1082     }
1083 }
1084
1085 static void opj_dwt_encode_stepsize(OPJ_INT32 stepsize, OPJ_INT32 numbps,
1086                                     opj_stepsize_t *bandno_stepsize)
1087 {
1088     OPJ_INT32 p, n;
1089     p = opj_int_floorlog2(stepsize) - 13;
1090     n = 11 - opj_int_floorlog2(stepsize);
1091     bandno_stepsize->mant = (n < 0 ? stepsize >> -n : stepsize << n) & 0x7ff;
1092     bandno_stepsize->expn = numbps - p;
1093 }
1094
1095 /*
1096 ==========================================================
1097    DWT interface
1098 ==========================================================
1099 */
1100
1101
1102 /* <summary>                            */
1103 /* Forward 5-3 wavelet transform in 2-D. */
1104 /* </summary>                           */
1105 static INLINE OPJ_BOOL opj_dwt_encode_procedure(opj_tcd_tilecomp_t * tilec,
1106         void (*p_function)(OPJ_INT32 *, OPJ_INT32, OPJ_INT32, OPJ_INT32))
1107 {
1108     OPJ_INT32 i, j, k;
1109     OPJ_INT32 *a = 00;
1110     OPJ_INT32 *aj = 00;
1111     OPJ_INT32 *bj = 00;
1112     OPJ_INT32 w, l;
1113
1114     OPJ_INT32 rw;           /* width of the resolution level computed   */
1115     OPJ_INT32 rh;           /* height of the resolution level computed  */
1116     size_t l_data_size;
1117
1118     opj_tcd_resolution_t * l_cur_res = 0;
1119     opj_tcd_resolution_t * l_last_res = 0;
1120
1121     w = tilec->x1 - tilec->x0;
1122     l = (OPJ_INT32)tilec->numresolutions - 1;
1123     a = tilec->data;
1124
1125     l_cur_res = tilec->resolutions + l;
1126     l_last_res = l_cur_res - 1;
1127
1128     l_data_size = opj_dwt_max_resolution(tilec->resolutions, tilec->numresolutions);
1129     /* overflow check */
1130     if (l_data_size > (SIZE_MAX / sizeof(OPJ_INT32))) {
1131         /* FIXME event manager error callback */
1132         return OPJ_FALSE;
1133     }
1134     l_data_size *= sizeof(OPJ_INT32);
1135     bj = (OPJ_INT32*)opj_malloc(l_data_size);
1136     /* l_data_size is equal to 0 when numresolutions == 1 but bj is not used */
1137     /* in that case, so do not error out */
1138     if (l_data_size != 0 && ! bj) {
1139         return OPJ_FALSE;
1140     }
1141     i = l;
1142
1143     while (i--) {
1144         OPJ_INT32 rw1;      /* width of the resolution level once lower than computed one                                       */
1145         OPJ_INT32 rh1;      /* height of the resolution level once lower than computed one                                      */
1146         OPJ_INT32 cas_col;  /* 0 = non inversion on horizontal filtering 1 = inversion between low-pass and high-pass filtering */
1147         OPJ_INT32 cas_row;  /* 0 = non inversion on vertical filtering 1 = inversion between low-pass and high-pass filtering   */
1148         OPJ_INT32 dn, sn;
1149
1150         rw  = l_cur_res->x1 - l_cur_res->x0;
1151         rh  = l_cur_res->y1 - l_cur_res->y0;
1152         rw1 = l_last_res->x1 - l_last_res->x0;
1153         rh1 = l_last_res->y1 - l_last_res->y0;
1154
1155         cas_row = l_cur_res->x0 & 1;
1156         cas_col = l_cur_res->y0 & 1;
1157
1158         sn = rh1;
1159         dn = rh - rh1;
1160         for (j = 0; j < rw; ++j) {
1161             aj = a + j;
1162             for (k = 0; k < rh; ++k) {
1163                 bj[k] = aj[k * w];
1164             }
1165
1166             (*p_function)(bj, dn, sn, cas_col);
1167
1168             opj_dwt_deinterleave_v(bj, aj, dn, sn, w, cas_col);
1169         }
1170
1171         sn = rw1;
1172         dn = rw - rw1;
1173
1174         for (j = 0; j < rh; j++) {
1175             aj = a + j * w;
1176             for (k = 0; k < rw; k++) {
1177                 bj[k] = aj[k];
1178             }
1179             (*p_function)(bj, dn, sn, cas_row);
1180             opj_dwt_deinterleave_h(bj, aj, dn, sn, cas_row);
1181         }
1182
1183         l_cur_res = l_last_res;
1184
1185         --l_last_res;
1186     }
1187
1188     opj_free(bj);
1189     return OPJ_TRUE;
1190 }
1191
1192 /* Forward 5-3 wavelet transform in 2-D. */
1193 /* </summary>                           */
1194 OPJ_BOOL opj_dwt_encode(opj_tcd_tilecomp_t * tilec)
1195 {
1196     return opj_dwt_encode_procedure(tilec, opj_dwt_encode_1);
1197 }
1198
1199 /* <summary>                            */
1200 /* Inverse 5-3 wavelet transform in 2-D. */
1201 /* </summary>                           */
1202 OPJ_BOOL opj_dwt_decode(opj_tcd_t *p_tcd, opj_tcd_tilecomp_t* tilec,
1203                         OPJ_UINT32 numres)
1204 {
1205     if (p_tcd->whole_tile_decoding) {
1206         return opj_dwt_decode_tile(p_tcd->thread_pool, tilec, numres);
1207     } else {
1208         return opj_dwt_decode_partial_tile(tilec, numres);
1209     }
1210 }
1211
1212
1213 /* <summary>                          */
1214 /* Get gain of 5-3 wavelet transform. */
1215 /* </summary>                         */
1216 OPJ_UINT32 opj_dwt_getgain(OPJ_UINT32 orient)
1217 {
1218     if (orient == 0) {
1219         return 0;
1220     }
1221     if (orient == 1 || orient == 2) {
1222         return 1;
1223     }
1224     return 2;
1225 }
1226
1227 /* <summary>                */
1228 /* Get norm of 5-3 wavelet. */
1229 /* </summary>               */
1230 OPJ_FLOAT64 opj_dwt_getnorm(OPJ_UINT32 level, OPJ_UINT32 orient)
1231 {
1232     return opj_dwt_norms[orient][level];
1233 }
1234
1235 /* <summary>                             */
1236 /* Forward 9-7 wavelet transform in 2-D. */
1237 /* </summary>                            */
1238 OPJ_BOOL opj_dwt_encode_real(opj_tcd_tilecomp_t * tilec)
1239 {
1240     return opj_dwt_encode_procedure(tilec, opj_dwt_encode_1_real);
1241 }
1242
1243 /* <summary>                          */
1244 /* Get gain of 9-7 wavelet transform. */
1245 /* </summary>                         */
1246 OPJ_UINT32 opj_dwt_getgain_real(OPJ_UINT32 orient)
1247 {
1248     (void)orient;
1249     return 0;
1250 }
1251
1252 /* <summary>                */
1253 /* Get norm of 9-7 wavelet. */
1254 /* </summary>               */
1255 OPJ_FLOAT64 opj_dwt_getnorm_real(OPJ_UINT32 level, OPJ_UINT32 orient)
1256 {
1257     return opj_dwt_norms_real[orient][level];
1258 }
1259
1260 void opj_dwt_calc_explicit_stepsizes(opj_tccp_t * tccp, OPJ_UINT32 prec)
1261 {
1262     OPJ_UINT32 numbands, bandno;
1263     numbands = 3 * tccp->numresolutions - 2;
1264     for (bandno = 0; bandno < numbands; bandno++) {
1265         OPJ_FLOAT64 stepsize;
1266         OPJ_UINT32 resno, level, orient, gain;
1267
1268         resno = (bandno == 0) ? 0 : ((bandno - 1) / 3 + 1);
1269         orient = (bandno == 0) ? 0 : ((bandno - 1) % 3 + 1);
1270         level = tccp->numresolutions - 1 - resno;
1271         gain = (tccp->qmfbid == 0) ? 0 : ((orient == 0) ? 0 : (((orient == 1) ||
1272                                           (orient == 2)) ? 1 : 2));
1273         if (tccp->qntsty == J2K_CCP_QNTSTY_NOQNT) {
1274             stepsize = 1.0;
1275         } else {
1276             OPJ_FLOAT64 norm = opj_dwt_norms_real[orient][level];
1277             stepsize = (1 << (gain)) / norm;
1278         }
1279         opj_dwt_encode_stepsize((OPJ_INT32) floor(stepsize * 8192.0),
1280                                 (OPJ_INT32)(prec + gain), &tccp->stepsizes[bandno]);
1281     }
1282 }
1283
1284 /* <summary>                             */
1285 /* Determine maximum computed resolution level for inverse wavelet transform */
1286 /* </summary>                            */
1287 static OPJ_UINT32 opj_dwt_max_resolution(opj_tcd_resolution_t* OPJ_RESTRICT r,
1288         OPJ_UINT32 i)
1289 {
1290     OPJ_UINT32 mr   = 0;
1291     OPJ_UINT32 w;
1292     while (--i) {
1293         ++r;
1294         if (mr < (w = (OPJ_UINT32)(r->x1 - r->x0))) {
1295             mr = w ;
1296         }
1297         if (mr < (w = (OPJ_UINT32)(r->y1 - r->y0))) {
1298             mr = w ;
1299         }
1300     }
1301     return mr ;
1302 }
1303
1304 typedef struct {
1305     opj_dwt_t h;
1306     OPJ_UINT32 rw;
1307     OPJ_UINT32 w;
1308     OPJ_INT32 * OPJ_RESTRICT tiledp;
1309     OPJ_UINT32 min_j;
1310     OPJ_UINT32 max_j;
1311 } opj_dwd_decode_h_job_t;
1312
1313 static void opj_dwt_decode_h_func(void* user_data, opj_tls_t* tls)
1314 {
1315     OPJ_UINT32 j;
1316     opj_dwd_decode_h_job_t* job;
1317     (void)tls;
1318
1319     job = (opj_dwd_decode_h_job_t*)user_data;
1320     for (j = job->min_j; j < job->max_j; j++) {
1321         opj_idwt53_h(&job->h, &job->tiledp[j * job->w]);
1322     }
1323
1324     opj_aligned_free(job->h.mem);
1325     opj_free(job);
1326 }
1327
1328 typedef struct {
1329     opj_dwt_t v;
1330     OPJ_UINT32 rh;
1331     OPJ_UINT32 w;
1332     OPJ_INT32 * OPJ_RESTRICT tiledp;
1333     OPJ_UINT32 min_j;
1334     OPJ_UINT32 max_j;
1335 } opj_dwd_decode_v_job_t;
1336
1337 static void opj_dwt_decode_v_func(void* user_data, opj_tls_t* tls)
1338 {
1339     OPJ_UINT32 j;
1340     opj_dwd_decode_v_job_t* job;
1341     (void)tls;
1342
1343     job = (opj_dwd_decode_v_job_t*)user_data;
1344     for (j = job->min_j; j + PARALLEL_COLS_53 <= job->max_j;
1345             j += PARALLEL_COLS_53) {
1346         opj_idwt53_v(&job->v, &job->tiledp[j], (size_t)job->w,
1347                      PARALLEL_COLS_53);
1348     }
1349     if (j < job->max_j)
1350         opj_idwt53_v(&job->v, &job->tiledp[j], (size_t)job->w,
1351                      (OPJ_INT32)(job->max_j - j));
1352
1353     opj_aligned_free(job->v.mem);
1354     opj_free(job);
1355 }
1356
1357
1358 /* <summary>                            */
1359 /* Inverse wavelet transform in 2-D.    */
1360 /* </summary>                           */
1361 static OPJ_BOOL opj_dwt_decode_tile(opj_thread_pool_t* tp,
1362                                     opj_tcd_tilecomp_t* tilec, OPJ_UINT32 numres)
1363 {
1364     opj_dwt_t h;
1365     opj_dwt_t v;
1366
1367     opj_tcd_resolution_t* tr = tilec->resolutions;
1368
1369     OPJ_UINT32 rw = (OPJ_UINT32)(tr->x1 -
1370                                  tr->x0);  /* width of the resolution level computed */
1371     OPJ_UINT32 rh = (OPJ_UINT32)(tr->y1 -
1372                                  tr->y0);  /* height of the resolution level computed */
1373
1374     OPJ_UINT32 w = (OPJ_UINT32)(tilec->resolutions[tilec->minimum_num_resolutions -
1375                                                                1].x1 -
1376                                 tilec->resolutions[tilec->minimum_num_resolutions - 1].x0);
1377     size_t h_mem_size;
1378     int num_threads;
1379
1380     if (numres == 1U) {
1381         return OPJ_TRUE;
1382     }
1383     num_threads = opj_thread_pool_get_thread_count(tp);
1384     h_mem_size = opj_dwt_max_resolution(tr, numres);
1385     /* overflow check */
1386     if (h_mem_size > (SIZE_MAX / PARALLEL_COLS_53 / sizeof(OPJ_INT32))) {
1387         /* FIXME event manager error callback */
1388         return OPJ_FALSE;
1389     }
1390     /* We need PARALLEL_COLS_53 times the height of the array, */
1391     /* since for the vertical pass */
1392     /* we process PARALLEL_COLS_53 columns at a time */
1393     h_mem_size *= PARALLEL_COLS_53 * sizeof(OPJ_INT32);
1394     h.mem = (OPJ_INT32*)opj_aligned_32_malloc(h_mem_size);
1395     if (! h.mem) {
1396         /* FIXME event manager error callback */
1397         return OPJ_FALSE;
1398     }
1399
1400     v.mem = h.mem;
1401
1402     while (--numres) {
1403         OPJ_INT32 * OPJ_RESTRICT tiledp = tilec->data;
1404         OPJ_UINT32 j;
1405
1406         ++tr;
1407         h.sn = (OPJ_INT32)rw;
1408         v.sn = (OPJ_INT32)rh;
1409
1410         rw = (OPJ_UINT32)(tr->x1 - tr->x0);
1411         rh = (OPJ_UINT32)(tr->y1 - tr->y0);
1412
1413         h.dn = (OPJ_INT32)(rw - (OPJ_UINT32)h.sn);
1414         h.cas = tr->x0 % 2;
1415
1416         if (num_threads <= 1 || rh <= 1) {
1417             for (j = 0; j < rh; ++j) {
1418                 opj_idwt53_h(&h, &tiledp[(size_t)j * w]);
1419             }
1420         } else {
1421             OPJ_UINT32 num_jobs = (OPJ_UINT32)num_threads;
1422             OPJ_UINT32 step_j;
1423
1424             if (rh < num_jobs) {
1425                 num_jobs = rh;
1426             }
1427             step_j = (rh / num_jobs);
1428
1429             for (j = 0; j < num_jobs; j++) {
1430                 opj_dwd_decode_h_job_t* job;
1431
1432                 job = (opj_dwd_decode_h_job_t*) opj_malloc(sizeof(opj_dwd_decode_h_job_t));
1433                 if (!job) {
1434                     /* It would be nice to fallback to single thread case, but */
1435                     /* unfortunately some jobs may be launched and have modified */
1436                     /* tiledp, so it is not practical to recover from that error */
1437                     /* FIXME event manager error callback */
1438                     opj_thread_pool_wait_completion(tp, 0);
1439                     opj_aligned_free(h.mem);
1440                     return OPJ_FALSE;
1441                 }
1442                 job->h = h;
1443                 job->rw = rw;
1444                 job->w = w;
1445                 job->tiledp = tiledp;
1446                 job->min_j = j * step_j;
1447                 job->max_j = (j + 1U) * step_j; /* this can overflow */
1448                 if (j == (num_jobs - 1U)) {  /* this will take care of the overflow */
1449                     job->max_j = rh;
1450                 }
1451                 job->h.mem = (OPJ_INT32*)opj_aligned_32_malloc(h_mem_size);
1452                 if (!job->h.mem) {
1453                     /* FIXME event manager error callback */
1454                     opj_thread_pool_wait_completion(tp, 0);
1455                     opj_free(job);
1456                     opj_aligned_free(h.mem);
1457                     return OPJ_FALSE;
1458                 }
1459                 opj_thread_pool_submit_job(tp, opj_dwt_decode_h_func, job);
1460             }
1461             opj_thread_pool_wait_completion(tp, 0);
1462         }
1463
1464         v.dn = (OPJ_INT32)(rh - (OPJ_UINT32)v.sn);
1465         v.cas = tr->y0 % 2;
1466
1467         if (num_threads <= 1 || rw <= 1) {
1468             for (j = 0; j + PARALLEL_COLS_53 <= rw;
1469                     j += PARALLEL_COLS_53) {
1470                 opj_idwt53_v(&v, &tiledp[j], (size_t)w, PARALLEL_COLS_53);
1471             }
1472             if (j < rw) {
1473                 opj_idwt53_v(&v, &tiledp[j], (size_t)w, (OPJ_INT32)(rw - j));
1474             }
1475         } else {
1476             OPJ_UINT32 num_jobs = (OPJ_UINT32)num_threads;
1477             OPJ_UINT32 step_j;
1478
1479             if (rw < num_jobs) {
1480                 num_jobs = rw;
1481             }
1482             step_j = (rw / num_jobs);
1483
1484             for (j = 0; j < num_jobs; j++) {
1485                 opj_dwd_decode_v_job_t* job;
1486
1487                 job = (opj_dwd_decode_v_job_t*) opj_malloc(sizeof(opj_dwd_decode_v_job_t));
1488                 if (!job) {
1489                     /* It would be nice to fallback to single thread case, but */
1490                     /* unfortunately some jobs may be launched and have modified */
1491                     /* tiledp, so it is not practical to recover from that error */
1492                     /* FIXME event manager error callback */
1493                     opj_thread_pool_wait_completion(tp, 0);
1494                     opj_aligned_free(v.mem);
1495                     return OPJ_FALSE;
1496                 }
1497                 job->v = v;
1498                 job->rh = rh;
1499                 job->w = w;
1500                 job->tiledp = tiledp;
1501                 job->min_j = j * step_j;
1502                 job->max_j = (j + 1U) * step_j; /* this can overflow */
1503                 if (j == (num_jobs - 1U)) {  /* this will take care of the overflow */
1504                     job->max_j = rw;
1505                 }
1506                 job->v.mem = (OPJ_INT32*)opj_aligned_32_malloc(h_mem_size);
1507                 if (!job->v.mem) {
1508                     /* FIXME event manager error callback */
1509                     opj_thread_pool_wait_completion(tp, 0);
1510                     opj_free(job);
1511                     opj_aligned_free(v.mem);
1512                     return OPJ_FALSE;
1513                 }
1514                 opj_thread_pool_submit_job(tp, opj_dwt_decode_v_func, job);
1515             }
1516             opj_thread_pool_wait_completion(tp, 0);
1517         }
1518     }
1519     opj_aligned_free(h.mem);
1520     return OPJ_TRUE;
1521 }
1522
1523 static void opj_dwt_interleave_partial_h(OPJ_INT32 *dest,
1524         OPJ_INT32 cas,
1525         opj_sparse_array_int32_t* sa,
1526         OPJ_UINT32 sa_line,
1527         OPJ_UINT32 sn,
1528         OPJ_UINT32 win_l_x0,
1529         OPJ_UINT32 win_l_x1,
1530         OPJ_UINT32 win_h_x0,
1531         OPJ_UINT32 win_h_x1)
1532 {
1533     OPJ_BOOL ret;
1534     ret = opj_sparse_array_int32_read(sa,
1535                                       win_l_x0, sa_line,
1536                                       win_l_x1, sa_line + 1,
1537                                       dest + cas + 2 * win_l_x0,
1538                                       2, 0, OPJ_TRUE);
1539     assert(ret);
1540     ret = opj_sparse_array_int32_read(sa,
1541                                       sn + win_h_x0, sa_line,
1542                                       sn + win_h_x1, sa_line + 1,
1543                                       dest + 1 - cas + 2 * win_h_x0,
1544                                       2, 0, OPJ_TRUE);
1545     assert(ret);
1546     OPJ_UNUSED(ret);
1547 }
1548
1549
1550 static void opj_dwt_interleave_partial_v(OPJ_INT32 *dest,
1551         OPJ_INT32 cas,
1552         opj_sparse_array_int32_t* sa,
1553         OPJ_UINT32 sa_col,
1554         OPJ_UINT32 nb_cols,
1555         OPJ_UINT32 sn,
1556         OPJ_UINT32 win_l_y0,
1557         OPJ_UINT32 win_l_y1,
1558         OPJ_UINT32 win_h_y0,
1559         OPJ_UINT32 win_h_y1)
1560 {
1561     OPJ_BOOL ret;
1562     ret  = opj_sparse_array_int32_read(sa,
1563                                        sa_col, win_l_y0,
1564                                        sa_col + nb_cols, win_l_y1,
1565                                        dest + cas * 4 + 2 * 4 * win_l_y0,
1566                                        1, 2 * 4, OPJ_TRUE);
1567     assert(ret);
1568     ret = opj_sparse_array_int32_read(sa,
1569                                       sa_col, sn + win_h_y0,
1570                                       sa_col + nb_cols, sn + win_h_y1,
1571                                       dest + (1 - cas) * 4 + 2 * 4 * win_h_y0,
1572                                       1, 2 * 4, OPJ_TRUE);
1573     assert(ret);
1574     OPJ_UNUSED(ret);
1575 }
1576
1577 static void opj_dwt_decode_partial_1(OPJ_INT32 *a, OPJ_INT32 dn, OPJ_INT32 sn,
1578                                      OPJ_INT32 cas,
1579                                      OPJ_INT32 win_l_x0,
1580                                      OPJ_INT32 win_l_x1,
1581                                      OPJ_INT32 win_h_x0,
1582                                      OPJ_INT32 win_h_x1)
1583 {
1584     OPJ_INT32 i;
1585
1586     if (!cas) {
1587         if ((dn > 0) || (sn > 1)) { /* NEW :  CASE ONE ELEMENT */
1588
1589             /* Naive version is :
1590             for (i = win_l_x0; i < i_max; i++) {
1591                 OPJ_S(i) -= (OPJ_D_(i - 1) + OPJ_D_(i) + 2) >> 2;
1592             }
1593             for (i = win_h_x0; i < win_h_x1; i++) {
1594                 OPJ_D(i) += (OPJ_S_(i) + OPJ_S_(i + 1)) >> 1;
1595             }
1596             but the compiler doesn't manage to unroll it to avoid bound
1597             checking in OPJ_S_ and OPJ_D_ macros
1598             */
1599
1600             i = win_l_x0;
1601             if (i < win_l_x1) {
1602                 OPJ_INT32 i_max;
1603
1604                 /* Left-most case */
1605                 OPJ_S(i) -= (OPJ_D_(i - 1) + OPJ_D_(i) + 2) >> 2;
1606                 i ++;
1607
1608                 i_max = win_l_x1;
1609                 if (i_max > dn) {
1610                     i_max = dn;
1611                 }
1612                 for (; i < i_max; i++) {
1613                     /* No bound checking */
1614                     OPJ_S(i) -= (OPJ_D(i - 1) + OPJ_D(i) + 2) >> 2;
1615                 }
1616                 for (; i < win_l_x1; i++) {
1617                     /* Right-most case */
1618                     OPJ_S(i) -= (OPJ_D_(i - 1) + OPJ_D_(i) + 2) >> 2;
1619                 }
1620             }
1621
1622             i = win_h_x0;
1623             if (i < win_h_x1) {
1624                 OPJ_INT32 i_max = win_h_x1;
1625                 if (i_max >= sn) {
1626                     i_max = sn - 1;
1627                 }
1628                 for (; i < i_max; i++) {
1629                     /* No bound checking */
1630                     OPJ_D(i) += (OPJ_S(i) + OPJ_S(i + 1)) >> 1;
1631                 }
1632                 for (; i < win_h_x1; i++) {
1633                     /* Right-most case */
1634                     OPJ_D(i) += (OPJ_S_(i) + OPJ_S_(i + 1)) >> 1;
1635                 }
1636             }
1637         }
1638     } else {
1639         if (!sn  && dn == 1) {        /* NEW :  CASE ONE ELEMENT */
1640             OPJ_S(0) /= 2;
1641         } else {
1642             for (i = win_l_x0; i < win_l_x1; i++) {
1643                 OPJ_D(i) -= (OPJ_SS_(i) + OPJ_SS_(i + 1) + 2) >> 2;
1644             }
1645             for (i = win_h_x0; i < win_h_x1; i++) {
1646                 OPJ_S(i) += (OPJ_DD_(i) + OPJ_DD_(i - 1)) >> 1;
1647             }
1648         }
1649     }
1650 }
1651
1652 #define OPJ_S_off(i,off) a[(OPJ_UINT32)(i)*2*4+off]
1653 #define OPJ_D_off(i,off) a[(1+(OPJ_UINT32)(i)*2)*4+off]
1654 #define OPJ_S__off(i,off) ((i)<0?OPJ_S_off(0,off):((i)>=sn?OPJ_S_off(sn-1,off):OPJ_S_off(i,off)))
1655 #define OPJ_D__off(i,off) ((i)<0?OPJ_D_off(0,off):((i)>=dn?OPJ_D_off(dn-1,off):OPJ_D_off(i,off)))
1656 #define OPJ_SS__off(i,off) ((i)<0?OPJ_S_off(0,off):((i)>=dn?OPJ_S_off(dn-1,off):OPJ_S_off(i,off)))
1657 #define OPJ_DD__off(i,off) ((i)<0?OPJ_D_off(0,off):((i)>=sn?OPJ_D_off(sn-1,off):OPJ_D_off(i,off)))
1658
1659 static void opj_dwt_decode_partial_1_parallel(OPJ_INT32 *a,
1660         OPJ_UINT32 nb_cols,
1661         OPJ_INT32 dn, OPJ_INT32 sn,
1662         OPJ_INT32 cas,
1663         OPJ_INT32 win_l_x0,
1664         OPJ_INT32 win_l_x1,
1665         OPJ_INT32 win_h_x0,
1666         OPJ_INT32 win_h_x1)
1667 {
1668     OPJ_INT32 i;
1669     OPJ_UINT32 off;
1670
1671     (void)nb_cols;
1672
1673     if (!cas) {
1674         if ((dn > 0) || (sn > 1)) { /* NEW :  CASE ONE ELEMENT */
1675
1676             /* Naive version is :
1677             for (i = win_l_x0; i < i_max; i++) {
1678                 OPJ_S(i) -= (OPJ_D_(i - 1) + OPJ_D_(i) + 2) >> 2;
1679             }
1680             for (i = win_h_x0; i < win_h_x1; i++) {
1681                 OPJ_D(i) += (OPJ_S_(i) + OPJ_S_(i + 1)) >> 1;
1682             }
1683             but the compiler doesn't manage to unroll it to avoid bound
1684             checking in OPJ_S_ and OPJ_D_ macros
1685             */
1686
1687             i = win_l_x0;
1688             if (i < win_l_x1) {
1689                 OPJ_INT32 i_max;
1690
1691                 /* Left-most case */
1692                 for (off = 0; off < 4; off++) {
1693                     OPJ_S_off(i, off) -= (OPJ_D__off(i - 1, off) + OPJ_D__off(i, off) + 2) >> 2;
1694                 }
1695                 i ++;
1696
1697                 i_max = win_l_x1;
1698                 if (i_max > dn) {
1699                     i_max = dn;
1700                 }
1701
1702 #ifdef __SSE2__
1703                 if (i + 1 < i_max) {
1704                     const __m128i two = _mm_set1_epi32(2);
1705                     __m128i Dm1 = _mm_load_si128((__m128i * const)(a + 4 + (i - 1) * 8));
1706                     for (; i + 1 < i_max; i += 2) {
1707                         /* No bound checking */
1708                         __m128i S = _mm_load_si128((__m128i * const)(a + i * 8));
1709                         __m128i D = _mm_load_si128((__m128i * const)(a + 4 + i * 8));
1710                         __m128i S1 = _mm_load_si128((__m128i * const)(a + (i + 1) * 8));
1711                         __m128i D1 = _mm_load_si128((__m128i * const)(a + 4 + (i + 1) * 8));
1712                         S = _mm_sub_epi32(S,
1713                                           _mm_srai_epi32(_mm_add_epi32(_mm_add_epi32(Dm1, D), two), 2));
1714                         S1 = _mm_sub_epi32(S1,
1715                                            _mm_srai_epi32(_mm_add_epi32(_mm_add_epi32(D, D1), two), 2));
1716                         _mm_store_si128((__m128i*)(a + i * 8), S);
1717                         _mm_store_si128((__m128i*)(a + (i + 1) * 8), S1);
1718                         Dm1 = D1;
1719                     }
1720                 }
1721 #endif
1722
1723                 for (; i < i_max; i++) {
1724                     /* No bound checking */
1725                     for (off = 0; off < 4; off++) {
1726                         OPJ_S_off(i, off) -= (OPJ_D_off(i - 1, off) + OPJ_D_off(i, off) + 2) >> 2;
1727                     }
1728                 }
1729                 for (; i < win_l_x1; i++) {
1730                     /* Right-most case */
1731                     for (off = 0; off < 4; off++) {
1732                         OPJ_S_off(i, off) -= (OPJ_D__off(i - 1, off) + OPJ_D__off(i, off) + 2) >> 2;
1733                     }
1734                 }
1735             }
1736
1737             i = win_h_x0;
1738             if (i < win_h_x1) {
1739                 OPJ_INT32 i_max = win_h_x1;
1740                 if (i_max >= sn) {
1741                     i_max = sn - 1;
1742                 }
1743
1744 #ifdef __SSE2__
1745                 if (i + 1 < i_max) {
1746                     __m128i S =  _mm_load_si128((__m128i * const)(a + i * 8));
1747                     for (; i + 1 < i_max; i += 2) {
1748                         /* No bound checking */
1749                         __m128i D = _mm_load_si128((__m128i * const)(a + 4 + i * 8));
1750                         __m128i S1 = _mm_load_si128((__m128i * const)(a + (i + 1) * 8));
1751                         __m128i D1 = _mm_load_si128((__m128i * const)(a + 4 + (i + 1) * 8));
1752                         __m128i S2 = _mm_load_si128((__m128i * const)(a + (i + 2) * 8));
1753                         D = _mm_add_epi32(D, _mm_srai_epi32(_mm_add_epi32(S, S1), 1));
1754                         D1 = _mm_add_epi32(D1, _mm_srai_epi32(_mm_add_epi32(S1, S2), 1));
1755                         _mm_store_si128((__m128i*)(a + 4 + i * 8), D);
1756                         _mm_store_si128((__m128i*)(a + 4 + (i + 1) * 8), D1);
1757                         S = S2;
1758                     }
1759                 }
1760 #endif
1761
1762                 for (; i < i_max; i++) {
1763                     /* No bound checking */
1764                     for (off = 0; off < 4; off++) {
1765                         OPJ_D_off(i, off) += (OPJ_S_off(i, off) + OPJ_S_off(i + 1, off)) >> 1;
1766                     }
1767                 }
1768                 for (; i < win_h_x1; i++) {
1769                     /* Right-most case */
1770                     for (off = 0; off < 4; off++) {
1771                         OPJ_D_off(i, off) += (OPJ_S__off(i, off) + OPJ_S__off(i + 1, off)) >> 1;
1772                     }
1773                 }
1774             }
1775         }
1776     } else {
1777         if (!sn  && dn == 1) {        /* NEW :  CASE ONE ELEMENT */
1778             for (off = 0; off < 4; off++) {
1779                 OPJ_S_off(0, off) /= 2;
1780             }
1781         } else {
1782             for (i = win_l_x0; i < win_l_x1; i++) {
1783                 for (off = 0; off < 4; off++) {
1784                     OPJ_D_off(i, off) -= (OPJ_SS__off(i, off) + OPJ_SS__off(i + 1, off) + 2) >> 2;
1785                 }
1786             }
1787             for (i = win_h_x0; i < win_h_x1; i++) {
1788                 for (off = 0; off < 4; off++) {
1789                     OPJ_S_off(i, off) += (OPJ_DD__off(i, off) + OPJ_DD__off(i - 1, off)) >> 1;
1790                 }
1791             }
1792         }
1793     }
1794 }
1795
1796 static void opj_dwt_get_band_coordinates(opj_tcd_tilecomp_t* tilec,
1797         OPJ_UINT32 resno,
1798         OPJ_UINT32 bandno,
1799         OPJ_UINT32 tcx0,
1800         OPJ_UINT32 tcy0,
1801         OPJ_UINT32 tcx1,
1802         OPJ_UINT32 tcy1,
1803         OPJ_UINT32* tbx0,
1804         OPJ_UINT32* tby0,
1805         OPJ_UINT32* tbx1,
1806         OPJ_UINT32* tby1)
1807 {
1808     /* Compute number of decomposition for this band. See table F-1 */
1809     OPJ_UINT32 nb = (resno == 0) ?
1810                     tilec->numresolutions - 1 :
1811                     tilec->numresolutions - resno;
1812     /* Map above tile-based coordinates to sub-band-based coordinates per */
1813     /* equation B-15 of the standard */
1814     OPJ_UINT32 x0b = bandno & 1;
1815     OPJ_UINT32 y0b = bandno >> 1;
1816     if (tbx0) {
1817         *tbx0 = (nb == 0) ? tcx0 :
1818                 (tcx0 <= (1U << (nb - 1)) * x0b) ? 0 :
1819                 opj_uint_ceildivpow2(tcx0 - (1U << (nb - 1)) * x0b, nb);
1820     }
1821     if (tby0) {
1822         *tby0 = (nb == 0) ? tcy0 :
1823                 (tcy0 <= (1U << (nb - 1)) * y0b) ? 0 :
1824                 opj_uint_ceildivpow2(tcy0 - (1U << (nb - 1)) * y0b, nb);
1825     }
1826     if (tbx1) {
1827         *tbx1 = (nb == 0) ? tcx1 :
1828                 (tcx1 <= (1U << (nb - 1)) * x0b) ? 0 :
1829                 opj_uint_ceildivpow2(tcx1 - (1U << (nb - 1)) * x0b, nb);
1830     }
1831     if (tby1) {
1832         *tby1 = (nb == 0) ? tcy1 :
1833                 (tcy1 <= (1U << (nb - 1)) * y0b) ? 0 :
1834                 opj_uint_ceildivpow2(tcy1 - (1U << (nb - 1)) * y0b, nb);
1835     }
1836 }
1837
1838 static void opj_dwt_segment_grow(OPJ_UINT32 filter_width,
1839                                  OPJ_UINT32 max_size,
1840                                  OPJ_UINT32* start,
1841                                  OPJ_UINT32* end)
1842 {
1843     *start = opj_uint_subs(*start, filter_width);
1844     *end = opj_uint_adds(*end, filter_width);
1845     *end = opj_uint_min(*end, max_size);
1846 }
1847
1848
1849 static opj_sparse_array_int32_t* opj_dwt_init_sparse_array(
1850     opj_tcd_tilecomp_t* tilec,
1851     OPJ_UINT32 numres)
1852 {
1853     opj_tcd_resolution_t* tr_max = &(tilec->resolutions[numres - 1]);
1854     OPJ_UINT32 w = (OPJ_UINT32)(tr_max->x1 - tr_max->x0);
1855     OPJ_UINT32 h = (OPJ_UINT32)(tr_max->y1 - tr_max->y0);
1856     OPJ_UINT32 resno, bandno, precno, cblkno;
1857     opj_sparse_array_int32_t* sa = opj_sparse_array_int32_create(
1858                                        w, h, opj_uint_min(w, 64), opj_uint_min(h, 64));
1859     if (sa == NULL) {
1860         return NULL;
1861     }
1862
1863     for (resno = 0; resno < numres; ++resno) {
1864         opj_tcd_resolution_t* res = &tilec->resolutions[resno];
1865
1866         for (bandno = 0; bandno < res->numbands; ++bandno) {
1867             opj_tcd_band_t* band = &res->bands[bandno];
1868
1869             for (precno = 0; precno < res->pw * res->ph; ++precno) {
1870                 opj_tcd_precinct_t* precinct = &band->precincts[precno];
1871                 for (cblkno = 0; cblkno < precinct->cw * precinct->ch; ++cblkno) {
1872                     opj_tcd_cblk_dec_t* cblk = &precinct->cblks.dec[cblkno];
1873                     if (cblk->decoded_data != NULL) {
1874                         OPJ_UINT32 x = (OPJ_UINT32)(cblk->x0 - band->x0);
1875                         OPJ_UINT32 y = (OPJ_UINT32)(cblk->y0 - band->y0);
1876                         OPJ_UINT32 cblk_w = (OPJ_UINT32)(cblk->x1 - cblk->x0);
1877                         OPJ_UINT32 cblk_h = (OPJ_UINT32)(cblk->y1 - cblk->y0);
1878
1879                         if (band->bandno & 1) {
1880                             opj_tcd_resolution_t* pres = &tilec->resolutions[resno - 1];
1881                             x += (OPJ_UINT32)(pres->x1 - pres->x0);
1882                         }
1883                         if (band->bandno & 2) {
1884                             opj_tcd_resolution_t* pres = &tilec->resolutions[resno - 1];
1885                             y += (OPJ_UINT32)(pres->y1 - pres->y0);
1886                         }
1887
1888                         if (!opj_sparse_array_int32_write(sa, x, y,
1889                                                           x + cblk_w, y + cblk_h,
1890                                                           cblk->decoded_data,
1891                                                           1, cblk_w, OPJ_TRUE)) {
1892                             opj_sparse_array_int32_free(sa);
1893                             return NULL;
1894                         }
1895                     }
1896                 }
1897             }
1898         }
1899     }
1900
1901     return sa;
1902 }
1903
1904
1905 static OPJ_BOOL opj_dwt_decode_partial_tile(
1906     opj_tcd_tilecomp_t* tilec,
1907     OPJ_UINT32 numres)
1908 {
1909     opj_sparse_array_int32_t* sa;
1910     opj_dwt_t h;
1911     opj_dwt_t v;
1912     OPJ_UINT32 resno;
1913     /* This value matches the maximum left/right extension given in tables */
1914     /* F.2 and F.3 of the standard. */
1915     const OPJ_UINT32 filter_width = 2U;
1916
1917     opj_tcd_resolution_t* tr = tilec->resolutions;
1918     opj_tcd_resolution_t* tr_max = &(tilec->resolutions[numres - 1]);
1919
1920     OPJ_UINT32 rw = (OPJ_UINT32)(tr->x1 -
1921                                  tr->x0);  /* width of the resolution level computed */
1922     OPJ_UINT32 rh = (OPJ_UINT32)(tr->y1 -
1923                                  tr->y0);  /* height of the resolution level computed */
1924
1925     size_t h_mem_size;
1926
1927     /* Compute the intersection of the area of interest, expressed in tile coordinates */
1928     /* with the tile coordinates */
1929     OPJ_UINT32 win_tcx0 = tilec->win_x0;
1930     OPJ_UINT32 win_tcy0 = tilec->win_y0;
1931     OPJ_UINT32 win_tcx1 = tilec->win_x1;
1932     OPJ_UINT32 win_tcy1 = tilec->win_y1;
1933
1934     sa = opj_dwt_init_sparse_array(tilec, numres);
1935
1936     if (numres == 1U) {
1937         OPJ_BOOL ret = opj_sparse_array_int32_read(sa,
1938                        tr_max->win_x0 - (OPJ_UINT32)tr_max->x0,
1939                        tr_max->win_y0 - (OPJ_UINT32)tr_max->y0,
1940                        tr_max->win_x1 - (OPJ_UINT32)tr_max->x0,
1941                        tr_max->win_y1 - (OPJ_UINT32)tr_max->y0,
1942                        tilec->data_win,
1943                        1, tr_max->win_x1 - tr_max->win_x0,
1944                        OPJ_TRUE);
1945         assert(ret);
1946         OPJ_UNUSED(ret);
1947         opj_sparse_array_int32_free(sa);
1948         return OPJ_TRUE;
1949     }
1950     h_mem_size = opj_dwt_max_resolution(tr, numres);
1951     /* overflow check */
1952     /* in vertical pass, we process 4 columns at a time */
1953     if (h_mem_size > (SIZE_MAX / (4 * sizeof(OPJ_INT32)))) {
1954         /* FIXME event manager error callback */
1955         opj_sparse_array_int32_free(sa);
1956         return OPJ_FALSE;
1957     }
1958
1959     h_mem_size *= 4 * sizeof(OPJ_INT32);
1960     h.mem = (OPJ_INT32*)opj_aligned_32_malloc(h_mem_size);
1961     if (! h.mem) {
1962         /* FIXME event manager error callback */
1963         opj_sparse_array_int32_free(sa);
1964         return OPJ_FALSE;
1965     }
1966
1967     v.mem = h.mem;
1968
1969     for (resno = 1; resno < numres; resno ++) {
1970         OPJ_UINT32 i, j;
1971         /* Window of interest subband-based coordinates */
1972         OPJ_UINT32 win_ll_x0, win_ll_y0, win_ll_x1, win_ll_y1;
1973         OPJ_UINT32 win_hl_x0, win_hl_x1;
1974         OPJ_UINT32 win_lh_y0, win_lh_y1;
1975         /* Window of interest tile-resolution-based coordinates */
1976         OPJ_UINT32 win_tr_x0, win_tr_x1, win_tr_y0, win_tr_y1;
1977         /* Tile-resolution subband-based coordinates */
1978         OPJ_UINT32 tr_ll_x0, tr_ll_y0, tr_hl_x0, tr_lh_y0;
1979
1980         ++tr;
1981
1982         h.sn = (OPJ_INT32)rw;
1983         v.sn = (OPJ_INT32)rh;
1984
1985         rw = (OPJ_UINT32)(tr->x1 - tr->x0);
1986         rh = (OPJ_UINT32)(tr->y1 - tr->y0);
1987
1988         h.dn = (OPJ_INT32)(rw - (OPJ_UINT32)h.sn);
1989         h.cas = tr->x0 % 2;
1990
1991         v.dn = (OPJ_INT32)(rh - (OPJ_UINT32)v.sn);
1992         v.cas = tr->y0 % 2;
1993
1994         /* Get the subband coordinates for the window of interest */
1995         /* LL band */
1996         opj_dwt_get_band_coordinates(tilec, resno, 0,
1997                                      win_tcx0, win_tcy0, win_tcx1, win_tcy1,
1998                                      &win_ll_x0, &win_ll_y0,
1999                                      &win_ll_x1, &win_ll_y1);
2000
2001         /* HL band */
2002         opj_dwt_get_band_coordinates(tilec, resno, 1,
2003                                      win_tcx0, win_tcy0, win_tcx1, win_tcy1,
2004                                      &win_hl_x0, NULL, &win_hl_x1, NULL);
2005
2006         /* LH band */
2007         opj_dwt_get_band_coordinates(tilec, resno, 2,
2008                                      win_tcx0, win_tcy0, win_tcx1, win_tcy1,
2009                                      NULL, &win_lh_y0, NULL, &win_lh_y1);
2010
2011         /* Beware: band index for non-LL0 resolution are 0=HL, 1=LH and 2=HH */
2012         tr_ll_x0 = (OPJ_UINT32)tr->bands[1].x0;
2013         tr_ll_y0 = (OPJ_UINT32)tr->bands[0].y0;
2014         tr_hl_x0 = (OPJ_UINT32)tr->bands[0].x0;
2015         tr_lh_y0 = (OPJ_UINT32)tr->bands[1].y0;
2016
2017         /* Substract the origin of the bands for this tile, to the subwindow */
2018         /* of interest band coordinates, so as to get them relative to the */
2019         /* tile */
2020         win_ll_x0 = opj_uint_subs(win_ll_x0, tr_ll_x0);
2021         win_ll_y0 = opj_uint_subs(win_ll_y0, tr_ll_y0);
2022         win_ll_x1 = opj_uint_subs(win_ll_x1, tr_ll_x0);
2023         win_ll_y1 = opj_uint_subs(win_ll_y1, tr_ll_y0);
2024         win_hl_x0 = opj_uint_subs(win_hl_x0, tr_hl_x0);
2025         win_hl_x1 = opj_uint_subs(win_hl_x1, tr_hl_x0);
2026         win_lh_y0 = opj_uint_subs(win_lh_y0, tr_lh_y0);
2027         win_lh_y1 = opj_uint_subs(win_lh_y1, tr_lh_y0);
2028
2029         opj_dwt_segment_grow(filter_width, (OPJ_UINT32)h.sn, &win_ll_x0, &win_ll_x1);
2030         opj_dwt_segment_grow(filter_width, (OPJ_UINT32)h.dn, &win_hl_x0, &win_hl_x1);
2031
2032         opj_dwt_segment_grow(filter_width, (OPJ_UINT32)v.sn, &win_ll_y0, &win_ll_y1);
2033         opj_dwt_segment_grow(filter_width, (OPJ_UINT32)v.dn, &win_lh_y0, &win_lh_y1);
2034
2035         /* Compute the tile-resolution-based coordinates for the window of interest */
2036         if (h.cas == 0) {
2037             win_tr_x0 = opj_uint_min(2 * win_ll_x0, 2 * win_hl_x0 + 1);
2038             win_tr_x1 = opj_uint_min(opj_uint_max(2 * win_ll_x1, 2 * win_hl_x1 + 1), rw);
2039         } else {
2040             win_tr_x0 = opj_uint_min(2 * win_hl_x0, 2 * win_ll_x0 + 1);
2041             win_tr_x1 = opj_uint_min(opj_uint_max(2 * win_hl_x1, 2 * win_ll_x1 + 1), rw);
2042         }
2043
2044         if (v.cas == 0) {
2045             win_tr_y0 = opj_uint_min(2 * win_ll_y0, 2 * win_lh_y0 + 1);
2046             win_tr_y1 = opj_uint_min(opj_uint_max(2 * win_ll_y1, 2 * win_lh_y1 + 1), rh);
2047         } else {
2048             win_tr_y0 = opj_uint_min(2 * win_lh_y0, 2 * win_ll_y0 + 1);
2049             win_tr_y1 = opj_uint_min(opj_uint_max(2 * win_lh_y1, 2 * win_ll_y1 + 1), rh);
2050         }
2051
2052         for (j = 0; j < rh; ++j) {
2053             if ((j >= win_ll_y0 && j < win_ll_y1) ||
2054                     (j >= win_lh_y0 + (OPJ_UINT32)v.sn && j < win_lh_y1 + (OPJ_UINT32)v.sn)) {
2055
2056                 /* Avoids dwt.c:1584:44 (in opj_dwt_decode_partial_1): runtime error: */
2057                 /* signed integer overflow: -1094795586 + -1094795586 cannot be represented in type 'int' */
2058                 /* on opj_decompress -i  ../../openjpeg/MAPA.jp2 -o out.tif -d 0,0,256,256 */
2059                 /* This is less extreme than memsetting the whole buffer to 0 */
2060                 /* although we could potentially do better with better handling of edge conditions */
2061                 if (win_tr_x1 >= 1 && win_tr_x1 < rw) {
2062                     h.mem[win_tr_x1 - 1] = 0;
2063                 }
2064                 if (win_tr_x1 < rw) {
2065                     h.mem[win_tr_x1] = 0;
2066                 }
2067
2068                 opj_dwt_interleave_partial_h(h.mem,
2069                                              h.cas,
2070                                              sa,
2071                                              j,
2072                                              (OPJ_UINT32)h.sn,
2073                                              win_ll_x0,
2074                                              win_ll_x1,
2075                                              win_hl_x0,
2076                                              win_hl_x1);
2077                 opj_dwt_decode_partial_1(h.mem, h.dn, h.sn, h.cas,
2078                                          (OPJ_INT32)win_ll_x0,
2079                                          (OPJ_INT32)win_ll_x1,
2080                                          (OPJ_INT32)win_hl_x0,
2081                                          (OPJ_INT32)win_hl_x1);
2082                 if (!opj_sparse_array_int32_write(sa,
2083                                                   win_tr_x0, j,
2084                                                   win_tr_x1, j + 1,
2085                                                   h.mem + win_tr_x0,
2086                                                   1, 0, OPJ_TRUE)) {
2087                     /* FIXME event manager error callback */
2088                     opj_sparse_array_int32_free(sa);
2089                     opj_aligned_free(h.mem);
2090                     return OPJ_FALSE;
2091                 }
2092             }
2093         }
2094
2095         for (i = win_tr_x0; i < win_tr_x1;) {
2096             OPJ_UINT32 nb_cols = opj_uint_min(4U, win_tr_x1 - i);
2097             opj_dwt_interleave_partial_v(v.mem,
2098                                          v.cas,
2099                                          sa,
2100                                          i,
2101                                          nb_cols,
2102                                          (OPJ_UINT32)v.sn,
2103                                          win_ll_y0,
2104                                          win_ll_y1,
2105                                          win_lh_y0,
2106                                          win_lh_y1);
2107             opj_dwt_decode_partial_1_parallel(v.mem, nb_cols, v.dn, v.sn, v.cas,
2108                                               (OPJ_INT32)win_ll_y0,
2109                                               (OPJ_INT32)win_ll_y1,
2110                                               (OPJ_INT32)win_lh_y0,
2111                                               (OPJ_INT32)win_lh_y1);
2112             if (!opj_sparse_array_int32_write(sa,
2113                                               i, win_tr_y0,
2114                                               i + nb_cols, win_tr_y1,
2115                                               v.mem + 4 * win_tr_y0,
2116                                               1, 4, OPJ_TRUE)) {
2117                 /* FIXME event manager error callback */
2118                 opj_sparse_array_int32_free(sa);
2119                 opj_aligned_free(h.mem);
2120                 return OPJ_FALSE;
2121             }
2122
2123             i += nb_cols;
2124         }
2125     }
2126     opj_aligned_free(h.mem);
2127
2128     {
2129         OPJ_BOOL ret = opj_sparse_array_int32_read(sa,
2130                        tr_max->win_x0 - (OPJ_UINT32)tr_max->x0,
2131                        tr_max->win_y0 - (OPJ_UINT32)tr_max->y0,
2132                        tr_max->win_x1 - (OPJ_UINT32)tr_max->x0,
2133                        tr_max->win_y1 - (OPJ_UINT32)tr_max->y0,
2134                        tilec->data_win,
2135                        1, tr_max->win_x1 - tr_max->win_x0,
2136                        OPJ_TRUE);
2137         assert(ret);
2138         OPJ_UNUSED(ret);
2139     }
2140     opj_sparse_array_int32_free(sa);
2141     return OPJ_TRUE;
2142 }
2143
2144 static void opj_v4dwt_interleave_h(opj_v4dwt_t* OPJ_RESTRICT dwt,
2145                                    OPJ_FLOAT32* OPJ_RESTRICT a,
2146                                    OPJ_UINT32 width,
2147                                    OPJ_UINT32 remaining_height)
2148 {
2149     OPJ_FLOAT32* OPJ_RESTRICT bi = (OPJ_FLOAT32*)(dwt->wavelet + dwt->cas);
2150     OPJ_UINT32 i, k;
2151     OPJ_UINT32 x0 = dwt->win_l_x0;
2152     OPJ_UINT32 x1 = dwt->win_l_x1;
2153
2154     for (k = 0; k < 2; ++k) {
2155         if (remaining_height >= 4 && ((size_t) a & 0x0f) == 0 &&
2156                 ((size_t) bi & 0x0f) == 0 && (width & 0x0f) == 0) {
2157             /* Fast code path */
2158             for (i = x0; i < x1; ++i) {
2159                 OPJ_UINT32 j = i;
2160                 bi[i * 8    ] = a[j];
2161                 j += width;
2162                 bi[i * 8 + 1] = a[j];
2163                 j += width;
2164                 bi[i * 8 + 2] = a[j];
2165                 j += width;
2166                 bi[i * 8 + 3] = a[j];
2167             }
2168         } else {
2169             /* Slow code path */
2170             for (i = x0; i < x1; ++i) {
2171                 OPJ_UINT32 j = i;
2172                 bi[i * 8    ] = a[j];
2173                 j += width;
2174                 if (remaining_height == 1) {
2175                     continue;
2176                 }
2177                 bi[i * 8 + 1] = a[j];
2178                 j += width;
2179                 if (remaining_height == 2) {
2180                     continue;
2181                 }
2182                 bi[i * 8 + 2] = a[j];
2183                 j += width;
2184                 if (remaining_height == 3) {
2185                     continue;
2186                 }
2187                 bi[i * 8 + 3] = a[j]; /* This one*/
2188             }
2189         }
2190
2191         bi = (OPJ_FLOAT32*)(dwt->wavelet + 1 - dwt->cas);
2192         a += dwt->sn;
2193         x0 = dwt->win_h_x0;
2194         x1 = dwt->win_h_x1;
2195     }
2196 }
2197
2198 static void opj_v4dwt_interleave_partial_h(opj_v4dwt_t* dwt,
2199         opj_sparse_array_int32_t* sa,
2200         OPJ_UINT32 sa_line,
2201         OPJ_UINT32 remaining_height)
2202 {
2203     OPJ_UINT32 i;
2204     for (i = 0; i < remaining_height; i++) {
2205         OPJ_BOOL ret;
2206         ret = opj_sparse_array_int32_read(sa,
2207                                           dwt->win_l_x0, sa_line + i,
2208                                           dwt->win_l_x1, sa_line + i + 1,
2209                                           /* Nasty cast from float* to int32* */
2210                                           (OPJ_INT32*)(dwt->wavelet + dwt->cas + 2 * dwt->win_l_x0) + i,
2211                                           8, 0, OPJ_TRUE);
2212         assert(ret);
2213         ret = opj_sparse_array_int32_read(sa,
2214                                           (OPJ_UINT32)dwt->sn + dwt->win_h_x0, sa_line + i,
2215                                           (OPJ_UINT32)dwt->sn + dwt->win_h_x1, sa_line + i + 1,
2216                                           /* Nasty cast from float* to int32* */
2217                                           (OPJ_INT32*)(dwt->wavelet + 1 - dwt->cas + 2 * dwt->win_h_x0) + i,
2218                                           8, 0, OPJ_TRUE);
2219         assert(ret);
2220         OPJ_UNUSED(ret);
2221     }
2222 }
2223
2224 static void opj_v4dwt_interleave_v(opj_v4dwt_t* OPJ_RESTRICT dwt,
2225                                    OPJ_FLOAT32* OPJ_RESTRICT a,
2226                                    OPJ_UINT32 width,
2227                                    OPJ_UINT32 nb_elts_read)
2228 {
2229     opj_v4_t* OPJ_RESTRICT bi = dwt->wavelet + dwt->cas;
2230     OPJ_UINT32 i;
2231
2232     for (i = dwt->win_l_x0; i < dwt->win_l_x1; ++i) {
2233         memcpy(&bi[i * 2], &a[i * (size_t)width],
2234                (size_t)nb_elts_read * sizeof(OPJ_FLOAT32));
2235     }
2236
2237     a += (OPJ_UINT32)dwt->sn * (size_t)width;
2238     bi = dwt->wavelet + 1 - dwt->cas;
2239
2240     for (i = dwt->win_h_x0; i < dwt->win_h_x1; ++i) {
2241         memcpy(&bi[i * 2], &a[i * (size_t)width],
2242                (size_t)nb_elts_read * sizeof(OPJ_FLOAT32));
2243     }
2244 }
2245
2246 static void opj_v4dwt_interleave_partial_v(opj_v4dwt_t* OPJ_RESTRICT dwt,
2247         opj_sparse_array_int32_t* sa,
2248         OPJ_UINT32 sa_col,
2249         OPJ_UINT32 nb_elts_read)
2250 {
2251     OPJ_UINT32 i;
2252     for (i = 0; i < nb_elts_read; i++) {
2253         OPJ_BOOL ret;
2254         ret = opj_sparse_array_int32_read(sa,
2255                                           sa_col + i, dwt->win_l_x0,
2256                                           sa_col + i + 1, dwt->win_l_x1,
2257                                           (OPJ_INT32*)(dwt->wavelet + dwt->cas + 2 * dwt->win_l_x0) + i,
2258                                           0, 8, OPJ_TRUE);
2259         assert(ret);
2260         ret = opj_sparse_array_int32_read(sa,
2261                                           sa_col + i, (OPJ_UINT32)dwt->sn + dwt->win_h_x0,
2262                                           sa_col + i + 1, (OPJ_UINT32)dwt->sn + dwt->win_h_x1,
2263                                           (OPJ_INT32*)(dwt->wavelet + 1 - dwt->cas + 2 * dwt->win_h_x0) + i,
2264                                           0, 8, OPJ_TRUE);
2265         assert(ret);
2266         OPJ_UNUSED(ret);
2267     }
2268 }
2269
2270 #ifdef __SSE__
2271
2272 static void opj_v4dwt_decode_step1_sse(opj_v4_t* w,
2273                                        OPJ_UINT32 start,
2274                                        OPJ_UINT32 end,
2275                                        const __m128 c)
2276 {
2277     __m128* OPJ_RESTRICT vw = (__m128*) w;
2278     OPJ_UINT32 i;
2279     /* 4x unrolled loop */
2280     for (i = start; i + 3 < end; i += 4) {
2281         vw[2 * i] = _mm_mul_ps(vw[2 * i], c);
2282         vw[2 * i + 2] = _mm_mul_ps(vw[2 * i + 2], c);
2283         vw[2 * i + 4] = _mm_mul_ps(vw[2 * i + 4], c);
2284         vw[2 * i + 6] = _mm_mul_ps(vw[2 * i + 6], c);
2285     }
2286     for (; i < end; ++i) {
2287         vw[2 * i] = _mm_mul_ps(vw[2 * i], c);
2288     }
2289 }
2290
2291 static void opj_v4dwt_decode_step2_sse(opj_v4_t* l, opj_v4_t* w,
2292                                        OPJ_UINT32 start,
2293                                        OPJ_UINT32 end,
2294                                        OPJ_UINT32 m,
2295                                        __m128 c)
2296 {
2297     __m128* OPJ_RESTRICT vl = (__m128*) l;
2298     __m128* OPJ_RESTRICT vw = (__m128*) w;
2299     OPJ_UINT32 i;
2300     OPJ_UINT32 imax = opj_uint_min(end, m);
2301     __m128 tmp1, tmp2, tmp3;
2302     if (start == 0) {
2303         tmp1 = vl[0];
2304     } else {
2305         vw += start * 2;
2306         tmp1 = vw[-3];
2307     }
2308     for (i = start; i < imax; ++i) {
2309         tmp2 = vw[-1];
2310         tmp3 = vw[ 0];
2311         vw[-1] = _mm_add_ps(tmp2, _mm_mul_ps(_mm_add_ps(tmp1, tmp3), c));
2312         tmp1 = tmp3;
2313         vw += 2;
2314     }
2315     if (m < end) {
2316         assert(m + 1 == end);
2317         c = _mm_add_ps(c, c);
2318         c = _mm_mul_ps(c, vw[-2]);
2319         vw[-1] = _mm_add_ps(vw[-1], c);
2320     }
2321 }
2322
2323 #else
2324
2325 static void opj_v4dwt_decode_step1(opj_v4_t* w,
2326                                    OPJ_UINT32 start,
2327                                    OPJ_UINT32 end,
2328                                    const OPJ_FLOAT32 c)
2329 {
2330     OPJ_FLOAT32* OPJ_RESTRICT fw = (OPJ_FLOAT32*) w;
2331     OPJ_UINT32 i;
2332     for (i = start; i < end; ++i) {
2333         OPJ_FLOAT32 tmp1 = fw[i * 8    ];
2334         OPJ_FLOAT32 tmp2 = fw[i * 8 + 1];
2335         OPJ_FLOAT32 tmp3 = fw[i * 8 + 2];
2336         OPJ_FLOAT32 tmp4 = fw[i * 8 + 3];
2337         fw[i * 8    ] = tmp1 * c;
2338         fw[i * 8 + 1] = tmp2 * c;
2339         fw[i * 8 + 2] = tmp3 * c;
2340         fw[i * 8 + 3] = tmp4 * c;
2341     }
2342 }
2343
2344 static void opj_v4dwt_decode_step2(opj_v4_t* l, opj_v4_t* w,
2345                                    OPJ_UINT32 start,
2346                                    OPJ_UINT32 end,
2347                                    OPJ_UINT32 m,
2348                                    OPJ_FLOAT32 c)
2349 {
2350     OPJ_FLOAT32* fl = (OPJ_FLOAT32*) l;
2351     OPJ_FLOAT32* fw = (OPJ_FLOAT32*) w;
2352     OPJ_UINT32 i;
2353     OPJ_UINT32 imax = opj_uint_min(end, m);
2354     if (start > 0) {
2355         fw += 8 * start;
2356         fl = fw - 8;
2357     }
2358     for (i = start; i < imax; ++i) {
2359         OPJ_FLOAT32 tmp1_1 = fl[0];
2360         OPJ_FLOAT32 tmp1_2 = fl[1];
2361         OPJ_FLOAT32 tmp1_3 = fl[2];
2362         OPJ_FLOAT32 tmp1_4 = fl[3];
2363         OPJ_FLOAT32 tmp2_1 = fw[-4];
2364         OPJ_FLOAT32 tmp2_2 = fw[-3];
2365         OPJ_FLOAT32 tmp2_3 = fw[-2];
2366         OPJ_FLOAT32 tmp2_4 = fw[-1];
2367         OPJ_FLOAT32 tmp3_1 = fw[0];
2368         OPJ_FLOAT32 tmp3_2 = fw[1];
2369         OPJ_FLOAT32 tmp3_3 = fw[2];
2370         OPJ_FLOAT32 tmp3_4 = fw[3];
2371         fw[-4] = tmp2_1 + ((tmp1_1 + tmp3_1) * c);
2372         fw[-3] = tmp2_2 + ((tmp1_2 + tmp3_2) * c);
2373         fw[-2] = tmp2_3 + ((tmp1_3 + tmp3_3) * c);
2374         fw[-1] = tmp2_4 + ((tmp1_4 + tmp3_4) * c);
2375         fl = fw;
2376         fw += 8;
2377     }
2378     if (m < end) {
2379         assert(m + 1 == end);
2380         c += c;
2381         fw[-4] = fw[-4] + fl[0] * c;
2382         fw[-3] = fw[-3] + fl[1] * c;
2383         fw[-2] = fw[-2] + fl[2] * c;
2384         fw[-1] = fw[-1] + fl[3] * c;
2385     }
2386 }
2387
2388 #endif
2389
2390 /* <summary>                             */
2391 /* Inverse 9-7 wavelet transform in 1-D. */
2392 /* </summary>                            */
2393 static void opj_v4dwt_decode(opj_v4dwt_t* OPJ_RESTRICT dwt)
2394 {
2395     OPJ_INT32 a, b;
2396     if (dwt->cas == 0) {
2397         if (!((dwt->dn > 0) || (dwt->sn > 1))) {
2398             return;
2399         }
2400         a = 0;
2401         b = 1;
2402     } else {
2403         if (!((dwt->sn > 0) || (dwt->dn > 1))) {
2404             return;
2405         }
2406         a = 1;
2407         b = 0;
2408     }
2409 #ifdef __SSE__
2410     opj_v4dwt_decode_step1_sse(dwt->wavelet + a, dwt->win_l_x0, dwt->win_l_x1,
2411                                _mm_set1_ps(opj_K));
2412     opj_v4dwt_decode_step1_sse(dwt->wavelet + b, dwt->win_h_x0, dwt->win_h_x1,
2413                                _mm_set1_ps(opj_c13318));
2414     opj_v4dwt_decode_step2_sse(dwt->wavelet + b, dwt->wavelet + a + 1,
2415                                dwt->win_l_x0, dwt->win_l_x1,
2416                                (OPJ_UINT32)opj_int_min(dwt->sn, dwt->dn - a),
2417                                _mm_set1_ps(opj_dwt_delta));
2418     opj_v4dwt_decode_step2_sse(dwt->wavelet + a, dwt->wavelet + b + 1,
2419                                dwt->win_h_x0, dwt->win_h_x1,
2420                                (OPJ_UINT32)opj_int_min(dwt->dn, dwt->sn - b),
2421                                _mm_set1_ps(opj_dwt_gamma));
2422     opj_v4dwt_decode_step2_sse(dwt->wavelet + b, dwt->wavelet + a + 1,
2423                                dwt->win_l_x0, dwt->win_l_x1,
2424                                (OPJ_UINT32)opj_int_min(dwt->sn, dwt->dn - a),
2425                                _mm_set1_ps(opj_dwt_beta));
2426     opj_v4dwt_decode_step2_sse(dwt->wavelet + a, dwt->wavelet + b + 1,
2427                                dwt->win_h_x0, dwt->win_h_x1,
2428                                (OPJ_UINT32)opj_int_min(dwt->dn, dwt->sn - b),
2429                                _mm_set1_ps(opj_dwt_alpha));
2430 #else
2431     opj_v4dwt_decode_step1(dwt->wavelet + a, dwt->win_l_x0, dwt->win_l_x1,
2432                            opj_K);
2433     opj_v4dwt_decode_step1(dwt->wavelet + b, dwt->win_h_x0, dwt->win_h_x1,
2434                            opj_c13318);
2435     opj_v4dwt_decode_step2(dwt->wavelet + b, dwt->wavelet + a + 1,
2436                            dwt->win_l_x0, dwt->win_l_x1,
2437                            (OPJ_UINT32)opj_int_min(dwt->sn, dwt->dn - a),
2438                            opj_dwt_delta);
2439     opj_v4dwt_decode_step2(dwt->wavelet + a, dwt->wavelet + b + 1,
2440                            dwt->win_h_x0, dwt->win_h_x1,
2441                            (OPJ_UINT32)opj_int_min(dwt->dn, dwt->sn - b),
2442                            opj_dwt_gamma);
2443     opj_v4dwt_decode_step2(dwt->wavelet + b, dwt->wavelet + a + 1,
2444                            dwt->win_l_x0, dwt->win_l_x1,
2445                            (OPJ_UINT32)opj_int_min(dwt->sn, dwt->dn - a),
2446                            opj_dwt_beta);
2447     opj_v4dwt_decode_step2(dwt->wavelet + a, dwt->wavelet + b + 1,
2448                            dwt->win_h_x0, dwt->win_h_x1,
2449                            (OPJ_UINT32)opj_int_min(dwt->dn, dwt->sn - b),
2450                            opj_dwt_alpha);
2451 #endif
2452 }
2453
2454
2455 /* <summary>                             */
2456 /* Inverse 9-7 wavelet transform in 2-D. */
2457 /* </summary>                            */
2458 static
2459 OPJ_BOOL opj_dwt_decode_tile_97(opj_tcd_tilecomp_t* OPJ_RESTRICT tilec,
2460                                 OPJ_UINT32 numres)
2461 {
2462     opj_v4dwt_t h;
2463     opj_v4dwt_t v;
2464
2465     opj_tcd_resolution_t* res = tilec->resolutions;
2466
2467     OPJ_UINT32 rw = (OPJ_UINT32)(res->x1 -
2468                                  res->x0);    /* width of the resolution level computed */
2469     OPJ_UINT32 rh = (OPJ_UINT32)(res->y1 -
2470                                  res->y0);    /* height of the resolution level computed */
2471
2472     OPJ_UINT32 w = (OPJ_UINT32)(tilec->resolutions[tilec->minimum_num_resolutions -
2473                                                                1].x1 -
2474                                 tilec->resolutions[tilec->minimum_num_resolutions - 1].x0);
2475
2476     size_t l_data_size;
2477
2478     l_data_size = opj_dwt_max_resolution(res, numres);
2479     /* overflow check */
2480     if (l_data_size > (SIZE_MAX - 5U)) {
2481         /* FIXME event manager error callback */
2482         return OPJ_FALSE;
2483     }
2484     l_data_size += 5U;
2485     /* overflow check */
2486     if (l_data_size > (SIZE_MAX / sizeof(opj_v4_t))) {
2487         /* FIXME event manager error callback */
2488         return OPJ_FALSE;
2489     }
2490     h.wavelet = (opj_v4_t*) opj_aligned_malloc(l_data_size * sizeof(opj_v4_t));
2491     if (!h.wavelet) {
2492         /* FIXME event manager error callback */
2493         return OPJ_FALSE;
2494     }
2495     v.wavelet = h.wavelet;
2496
2497     while (--numres) {
2498         OPJ_FLOAT32 * OPJ_RESTRICT aj = (OPJ_FLOAT32*) tilec->data;
2499         OPJ_UINT32 j;
2500
2501         h.sn = (OPJ_INT32)rw;
2502         v.sn = (OPJ_INT32)rh;
2503
2504         ++res;
2505
2506         rw = (OPJ_UINT32)(res->x1 -
2507                           res->x0);   /* width of the resolution level computed */
2508         rh = (OPJ_UINT32)(res->y1 -
2509                           res->y0);   /* height of the resolution level computed */
2510
2511         h.dn = (OPJ_INT32)(rw - (OPJ_UINT32)h.sn);
2512         h.cas = res->x0 % 2;
2513
2514         h.win_l_x0 = 0;
2515         h.win_l_x1 = (OPJ_UINT32)h.sn;
2516         h.win_h_x0 = 0;
2517         h.win_h_x1 = (OPJ_UINT32)h.dn;
2518         for (j = 0; j + 3 < rh; j += 4) {
2519             OPJ_UINT32 k;
2520             opj_v4dwt_interleave_h(&h, aj, w, rh - j);
2521             opj_v4dwt_decode(&h);
2522
2523             for (k = 0; k < rw; k++) {
2524                 aj[k      ] = h.wavelet[k].f[0];
2525                 aj[k + (size_t)w  ] = h.wavelet[k].f[1];
2526                 aj[k + (size_t)w * 2] = h.wavelet[k].f[2];
2527                 aj[k + (size_t)w * 3] = h.wavelet[k].f[3];
2528             }
2529
2530             aj += w * 4;
2531         }
2532
2533         if (j < rh) {
2534             OPJ_UINT32 k;
2535             opj_v4dwt_interleave_h(&h, aj, w, rh - j);
2536             opj_v4dwt_decode(&h);
2537             for (k = 0; k < rw; k++) {
2538                 switch (rh - j) {
2539                 case 3:
2540                     aj[k + (size_t)w * 2] = h.wavelet[k].f[2];
2541                 /* FALLTHRU */
2542                 case 2:
2543                     aj[k + (size_t)w  ] = h.wavelet[k].f[1];
2544                 /* FALLTHRU */
2545                 case 1:
2546                     aj[k] = h.wavelet[k].f[0];
2547                 }
2548             }
2549         }
2550
2551         v.dn = (OPJ_INT32)(rh - (OPJ_UINT32)v.sn);
2552         v.cas = res->y0 % 2;
2553         v.win_l_x0 = 0;
2554         v.win_l_x1 = (OPJ_UINT32)v.sn;
2555         v.win_h_x0 = 0;
2556         v.win_h_x1 = (OPJ_UINT32)v.dn;
2557
2558         aj = (OPJ_FLOAT32*) tilec->data;
2559         for (j = rw; j > 3; j -= 4) {
2560             OPJ_UINT32 k;
2561
2562             opj_v4dwt_interleave_v(&v, aj, w, 4);
2563             opj_v4dwt_decode(&v);
2564
2565             for (k = 0; k < rh; ++k) {
2566                 memcpy(&aj[k * (size_t)w], &v.wavelet[k], 4 * sizeof(OPJ_FLOAT32));
2567             }
2568             aj += 4;
2569         }
2570
2571         if (rw & 0x03) {
2572             OPJ_UINT32 k;
2573
2574             j = rw & 0x03;
2575
2576             opj_v4dwt_interleave_v(&v, aj, w, j);
2577             opj_v4dwt_decode(&v);
2578
2579             for (k = 0; k < rh; ++k) {
2580                 memcpy(&aj[k * (size_t)w], &v.wavelet[k], (size_t)j * sizeof(OPJ_FLOAT32));
2581             }
2582         }
2583     }
2584
2585     opj_aligned_free(h.wavelet);
2586     return OPJ_TRUE;
2587 }
2588
2589 static
2590 OPJ_BOOL opj_dwt_decode_partial_97(opj_tcd_tilecomp_t* OPJ_RESTRICT tilec,
2591                                    OPJ_UINT32 numres)
2592 {
2593     opj_sparse_array_int32_t* sa;
2594     opj_v4dwt_t h;
2595     opj_v4dwt_t v;
2596     OPJ_UINT32 resno;
2597     /* This value matches the maximum left/right extension given in tables */
2598     /* F.2 and F.3 of the standard. Note: in opj_tcd_is_subband_area_of_interest() */
2599     /* we currently use 3. */
2600     const OPJ_UINT32 filter_width = 4U;
2601
2602     opj_tcd_resolution_t* tr = tilec->resolutions;
2603     opj_tcd_resolution_t* tr_max = &(tilec->resolutions[numres - 1]);
2604
2605     OPJ_UINT32 rw = (OPJ_UINT32)(tr->x1 -
2606                                  tr->x0);    /* width of the resolution level computed */
2607     OPJ_UINT32 rh = (OPJ_UINT32)(tr->y1 -
2608                                  tr->y0);    /* height of the resolution level computed */
2609
2610     size_t l_data_size;
2611
2612     /* Compute the intersection of the area of interest, expressed in tile coordinates */
2613     /* with the tile coordinates */
2614     OPJ_UINT32 win_tcx0 = tilec->win_x0;
2615     OPJ_UINT32 win_tcy0 = tilec->win_y0;
2616     OPJ_UINT32 win_tcx1 = tilec->win_x1;
2617     OPJ_UINT32 win_tcy1 = tilec->win_y1;
2618
2619     sa = opj_dwt_init_sparse_array(tilec, numres);
2620
2621     if (numres == 1U) {
2622         OPJ_BOOL ret = opj_sparse_array_int32_read(sa,
2623                        tr_max->win_x0 - (OPJ_UINT32)tr_max->x0,
2624                        tr_max->win_y0 - (OPJ_UINT32)tr_max->y0,
2625                        tr_max->win_x1 - (OPJ_UINT32)tr_max->x0,
2626                        tr_max->win_y1 - (OPJ_UINT32)tr_max->y0,
2627                        tilec->data_win,
2628                        1, tr_max->win_x1 - tr_max->win_x0,
2629                        OPJ_TRUE);
2630         assert(ret);
2631         OPJ_UNUSED(ret);
2632         opj_sparse_array_int32_free(sa);
2633         return OPJ_TRUE;
2634     }
2635
2636     l_data_size = opj_dwt_max_resolution(tr, numres);
2637     /* overflow check */
2638     if (l_data_size > (SIZE_MAX - 5U)) {
2639         /* FIXME event manager error callback */
2640         return OPJ_FALSE;
2641     }
2642     l_data_size += 5U;
2643     /* overflow check */
2644     if (l_data_size > (SIZE_MAX / sizeof(opj_v4_t))) {
2645         /* FIXME event manager error callback */
2646         return OPJ_FALSE;
2647     }
2648     h.wavelet = (opj_v4_t*) opj_aligned_malloc(l_data_size * sizeof(opj_v4_t));
2649     if (!h.wavelet) {
2650         /* FIXME event manager error callback */
2651         return OPJ_FALSE;
2652     }
2653     v.wavelet = h.wavelet;
2654
2655     for (resno = 1; resno < numres; resno ++) {
2656         OPJ_UINT32 j;
2657         /* Window of interest subband-based coordinates */
2658         OPJ_UINT32 win_ll_x0, win_ll_y0, win_ll_x1, win_ll_y1;
2659         OPJ_UINT32 win_hl_x0, win_hl_x1;
2660         OPJ_UINT32 win_lh_y0, win_lh_y1;
2661         /* Window of interest tile-resolution-based coordinates */
2662         OPJ_UINT32 win_tr_x0, win_tr_x1, win_tr_y0, win_tr_y1;
2663         /* Tile-resolution subband-based coordinates */
2664         OPJ_UINT32 tr_ll_x0, tr_ll_y0, tr_hl_x0, tr_lh_y0;
2665
2666         ++tr;
2667
2668         h.sn = (OPJ_INT32)rw;
2669         v.sn = (OPJ_INT32)rh;
2670
2671         rw = (OPJ_UINT32)(tr->x1 - tr->x0);
2672         rh = (OPJ_UINT32)(tr->y1 - tr->y0);
2673
2674         h.dn = (OPJ_INT32)(rw - (OPJ_UINT32)h.sn);
2675         h.cas = tr->x0 % 2;
2676
2677         v.dn = (OPJ_INT32)(rh - (OPJ_UINT32)v.sn);
2678         v.cas = tr->y0 % 2;
2679
2680         /* Get the subband coordinates for the window of interest */
2681         /* LL band */
2682         opj_dwt_get_band_coordinates(tilec, resno, 0,
2683                                      win_tcx0, win_tcy0, win_tcx1, win_tcy1,
2684                                      &win_ll_x0, &win_ll_y0,
2685                                      &win_ll_x1, &win_ll_y1);
2686
2687         /* HL band */
2688         opj_dwt_get_band_coordinates(tilec, resno, 1,
2689                                      win_tcx0, win_tcy0, win_tcx1, win_tcy1,
2690                                      &win_hl_x0, NULL, &win_hl_x1, NULL);
2691
2692         /* LH band */
2693         opj_dwt_get_band_coordinates(tilec, resno, 2,
2694                                      win_tcx0, win_tcy0, win_tcx1, win_tcy1,
2695                                      NULL, &win_lh_y0, NULL, &win_lh_y1);
2696
2697         /* Beware: band index for non-LL0 resolution are 0=HL, 1=LH and 2=HH */
2698         tr_ll_x0 = (OPJ_UINT32)tr->bands[1].x0;
2699         tr_ll_y0 = (OPJ_UINT32)tr->bands[0].y0;
2700         tr_hl_x0 = (OPJ_UINT32)tr->bands[0].x0;
2701         tr_lh_y0 = (OPJ_UINT32)tr->bands[1].y0;
2702
2703         /* Substract the origin of the bands for this tile, to the subwindow */
2704         /* of interest band coordinates, so as to get them relative to the */
2705         /* tile */
2706         win_ll_x0 = opj_uint_subs(win_ll_x0, tr_ll_x0);
2707         win_ll_y0 = opj_uint_subs(win_ll_y0, tr_ll_y0);
2708         win_ll_x1 = opj_uint_subs(win_ll_x1, tr_ll_x0);
2709         win_ll_y1 = opj_uint_subs(win_ll_y1, tr_ll_y0);
2710         win_hl_x0 = opj_uint_subs(win_hl_x0, tr_hl_x0);
2711         win_hl_x1 = opj_uint_subs(win_hl_x1, tr_hl_x0);
2712         win_lh_y0 = opj_uint_subs(win_lh_y0, tr_lh_y0);
2713         win_lh_y1 = opj_uint_subs(win_lh_y1, tr_lh_y0);
2714
2715         opj_dwt_segment_grow(filter_width, (OPJ_UINT32)h.sn, &win_ll_x0, &win_ll_x1);
2716         opj_dwt_segment_grow(filter_width, (OPJ_UINT32)h.dn, &win_hl_x0, &win_hl_x1);
2717
2718         opj_dwt_segment_grow(filter_width, (OPJ_UINT32)v.sn, &win_ll_y0, &win_ll_y1);
2719         opj_dwt_segment_grow(filter_width, (OPJ_UINT32)v.dn, &win_lh_y0, &win_lh_y1);
2720
2721         /* Compute the tile-resolution-based coordinates for the window of interest */
2722         if (h.cas == 0) {
2723             win_tr_x0 = opj_uint_min(2 * win_ll_x0, 2 * win_hl_x0 + 1);
2724             win_tr_x1 = opj_uint_min(opj_uint_max(2 * win_ll_x1, 2 * win_hl_x1 + 1), rw);
2725         } else {
2726             win_tr_x0 = opj_uint_min(2 * win_hl_x0, 2 * win_ll_x0 + 1);
2727             win_tr_x1 = opj_uint_min(opj_uint_max(2 * win_hl_x1, 2 * win_ll_x1 + 1), rw);
2728         }
2729
2730         if (v.cas == 0) {
2731             win_tr_y0 = opj_uint_min(2 * win_ll_y0, 2 * win_lh_y0 + 1);
2732             win_tr_y1 = opj_uint_min(opj_uint_max(2 * win_ll_y1, 2 * win_lh_y1 + 1), rh);
2733         } else {
2734             win_tr_y0 = opj_uint_min(2 * win_lh_y0, 2 * win_ll_y0 + 1);
2735             win_tr_y1 = opj_uint_min(opj_uint_max(2 * win_lh_y1, 2 * win_ll_y1 + 1), rh);
2736         }
2737
2738         h.win_l_x0 = win_ll_x0;
2739         h.win_l_x1 = win_ll_x1;
2740         h.win_h_x0 = win_hl_x0;
2741         h.win_h_x1 = win_hl_x1;
2742         for (j = 0; j + 3 < rh; j += 4) {
2743             if ((j + 3 >= win_ll_y0 && j < win_ll_y1) ||
2744                     (j + 3 >= win_lh_y0 + (OPJ_UINT32)v.sn &&
2745                      j < win_lh_y1 + (OPJ_UINT32)v.sn)) {
2746                 OPJ_UINT32 k;
2747                 opj_v4dwt_interleave_partial_h(&h, sa, j, opj_uint_min(4U, rh - j));
2748                 opj_v4dwt_decode(&h);
2749                 for (k = 0; k < 4; k++) {
2750                     if (!opj_sparse_array_int32_write(sa,
2751                                                       win_tr_x0, j + k,
2752                                                       win_tr_x1, j + k + 1,
2753                                                       (OPJ_INT32*)&h.wavelet[win_tr_x0].f[k],
2754                                                       4, 0, OPJ_TRUE)) {
2755                         /* FIXME event manager error callback */
2756                         opj_sparse_array_int32_free(sa);
2757                         opj_aligned_free(h.wavelet);
2758                         return OPJ_FALSE;
2759                     }
2760                 }
2761             }
2762         }
2763
2764         if (j < rh &&
2765                 ((j + 3 >= win_ll_y0 && j < win_ll_y1) ||
2766                  (j + 3 >= win_lh_y0 + (OPJ_UINT32)v.sn &&
2767                   j < win_lh_y1 + (OPJ_UINT32)v.sn))) {
2768             OPJ_UINT32 k;
2769             opj_v4dwt_interleave_partial_h(&h, sa, j, rh - j);
2770             opj_v4dwt_decode(&h);
2771             for (k = 0; k < rh - j; k++) {
2772                 if (!opj_sparse_array_int32_write(sa,
2773                                                   win_tr_x0, j + k,
2774                                                   win_tr_x1, j + k + 1,
2775                                                   (OPJ_INT32*)&h.wavelet[win_tr_x0].f[k],
2776                                                   4, 0, OPJ_TRUE)) {
2777                     /* FIXME event manager error callback */
2778                     opj_sparse_array_int32_free(sa);
2779                     opj_aligned_free(h.wavelet);
2780                     return OPJ_FALSE;
2781                 }
2782             }
2783         }
2784
2785         v.win_l_x0 = win_ll_y0;
2786         v.win_l_x1 = win_ll_y1;
2787         v.win_h_x0 = win_lh_y0;
2788         v.win_h_x1 = win_lh_y1;
2789         for (j = win_tr_x0; j < win_tr_x1; j += 4) {
2790             OPJ_UINT32 nb_elts = opj_uint_min(4U, win_tr_x1 - j);
2791             OPJ_UINT32 k;
2792
2793             opj_v4dwt_interleave_partial_v(&v, sa, j, nb_elts);
2794             opj_v4dwt_decode(&v);
2795
2796             for (k = 0; k < nb_elts; k++) {
2797                 if (!opj_sparse_array_int32_write(sa,
2798                                                   j + k, win_tr_y0,
2799                                                   j + k + 1, win_tr_y1,
2800                                                   (OPJ_INT32*)&h.wavelet[win_tr_y0].f[k],
2801                                                   0, 4, OPJ_TRUE)) {
2802                     /* FIXME event manager error callback */
2803                     opj_sparse_array_int32_free(sa);
2804                     opj_aligned_free(h.wavelet);
2805                     return OPJ_FALSE;
2806                 }
2807             }
2808         }
2809     }
2810
2811     {
2812         OPJ_BOOL ret = opj_sparse_array_int32_read(sa,
2813                        tr_max->win_x0 - (OPJ_UINT32)tr_max->x0,
2814                        tr_max->win_y0 - (OPJ_UINT32)tr_max->y0,
2815                        tr_max->win_x1 - (OPJ_UINT32)tr_max->x0,
2816                        tr_max->win_y1 - (OPJ_UINT32)tr_max->y0,
2817                        tilec->data_win,
2818                        1, tr_max->win_x1 - tr_max->win_x0,
2819                        OPJ_TRUE);
2820         assert(ret);
2821         OPJ_UNUSED(ret);
2822     }
2823     opj_sparse_array_int32_free(sa);
2824
2825     opj_aligned_free(h.wavelet);
2826     return OPJ_TRUE;
2827 }
2828
2829
2830 OPJ_BOOL opj_dwt_decode_real(opj_tcd_t *p_tcd,
2831                              opj_tcd_tilecomp_t* OPJ_RESTRICT tilec,
2832                              OPJ_UINT32 numres)
2833 {
2834     if (p_tcd->whole_tile_decoding) {
2835         return opj_dwt_decode_tile_97(tilec, numres);
2836     } else {
2837         return opj_dwt_decode_partial_97(tilec, numres);
2838     }
2839 }