Reformat whole codebase with astyle.options (#128)
[openjpeg.git] / src / lib / openjp3d / mct.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) 2001-2003, David Janssens
8  * Copyright (c) 2002-2003, Yannick Verschueren
9  * Copyright (c) 2003-2005, Francois Devaux and Antonin Descampe
10  * Copyright (c) 2005, Herve Drolon, FreeImage Team
11  * Copyright (c) 2002-2005, Communications and remote sensing Laboratory, Universite catholique de Louvain, Belgium
12  * All rights reserved.
13  *
14  * Redistribution and use in source and binary forms, with or without
15  * modification, are permitted provided that the following conditions
16  * are met:
17  * 1. Redistributions of source code must retain the above copyright
18  *    notice, this list of conditions and the following disclaimer.
19  * 2. Redistributions in binary form must reproduce the above copyright
20  *    notice, this list of conditions and the following disclaimer in the
21  *    documentation and/or other materials provided with the distribution.
22  *
23  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS `AS IS'
24  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26  * ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
27  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
28  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
29  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
30  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
31  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
32  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
33  * POSSIBILITY OF SUCH DAMAGE.
34  */
35
36 #include "opj_includes.h"
37
38 /* <summary> */
39 /* This table contains the norms of the basis function of the reversible MCT. */
40 /* </summary> */
41 static const double mct_norms[3] = { 1.732, .8292, .8292 };
42
43 /* <summary> */
44 /* This table contains the norms of the basis function of the irreversible MCT. */
45 /* </summary> */
46 static const double mct_norms_real[3] = { 1.732, 1.805, 1.573 };
47
48 /* <summary> */
49 /* Forward reversible MCT. */
50 /* </summary> */
51 void mct_encode(int *c0, int *c1, int *c2, int n)
52 {
53     int i;
54     for (i = 0; i < n; i++) {
55         int r, g, b, y, u, v;
56         r = c0[i];
57         g = c1[i];
58         b = c2[i];
59         y = (r + (g << 1) + b) >> 2;
60         u = b - g;
61         v = r - g;
62         c0[i] = y;
63         c1[i] = u;
64         c2[i] = v;
65     }
66 }
67
68 /* <summary> */
69 /* Inverse reversible MCT. */
70 /* </summary> */
71 void mct_decode(int *c0, int *c1, int *c2, int n)
72 {
73     int i;
74     for (i = 0; i < n; i++) {
75         int y, u, v, r, g, b;
76         y = c0[i];
77         u = c1[i];
78         v = c2[i];
79         g = y - ((u + v) >> 2);
80         r = v + g;
81         b = u + g;
82         c0[i] = r;
83         c1[i] = g;
84         c2[i] = b;
85     }
86 }
87
88 /* <summary> */
89 /* Get norm of basis function of reversible MCT. */
90 /* </summary> */
91 double mct_getnorm(int compno)
92 {
93     return mct_norms[compno];
94 }
95
96 /* <summary> */
97 /* Forward irreversible MCT. */
98 /* </summary> */
99 void mct_encode_real(int *c0, int *c1, int *c2, int n)
100 {
101     int i;
102     for (i = 0; i < n; i++) {
103         int r, g, b, y, u, v;
104         r = c0[i];
105         g = c1[i];
106         b = c2[i];
107         y = fix_mul(r, 2449) + fix_mul(g, 4809) + fix_mul(b, 934);
108         u = -fix_mul(r, 1382) - fix_mul(g, 2714) + fix_mul(b, 4096);
109         v = fix_mul(r, 4096) - fix_mul(g, 3430) - fix_mul(b, 666);
110         c0[i] = y;
111         c1[i] = u;
112         c2[i] = v;
113     }
114 }
115
116 /* <summary> */
117 /* Inverse irreversible MCT. */
118 /* </summary> */
119 void mct_decode_real(int *c0, int *c1, int *c2, int n)
120 {
121     int i;
122     for (i = 0; i < n; i++) {
123         int y, u, v, r, g, b;
124         y = c0[i];
125         u = c1[i];
126         v = c2[i];
127         r = y + fix_mul(v, 11485);
128         g = y - fix_mul(u, 2819) - fix_mul(v, 5850);
129         b = y + fix_mul(u, 14516);
130         c0[i] = r;
131         c1[i] = g;
132         c2[i] = b;
133     }
134 }
135
136 /* <summary> */
137 /* Get norm of basis function of irreversible MCT. */
138 /* </summary> */
139 double mct_getnorm_real(int compno)
140 {
141     return mct_norms_real[compno];
142 }